diff --git a/grammar.js b/grammar.js index d4b827c..8fb3458 100644 --- a/grammar.js +++ b/grammar.js @@ -61,6 +61,7 @@ module.exports = grammar({ [$.sized_type_specifier], [$.attributed_statement], [$._declaration_modifiers, $.attributed_statement], + [$.enum_specifier], ], word: $ => $.identifier, @@ -526,6 +527,7 @@ module.exports = grammar({ choice( seq( field('name', $._type_identifier), + optional(seq(':', field('underlying_type', $.primitive_type))), field('body', optional($.enumerator_list)), ), field('body', $.enumerator_list), @@ -580,8 +582,10 @@ module.exports = grammar({ field_declaration: $ => seq( $._declaration_specifiers, - commaSep(field('declarator', $._field_declarator)), - optional($.bitfield_clause), + commaSep(seq( + field('declarator', $._field_declarator), + optional($.bitfield_clause), + )), ';', ), diff --git a/src/grammar.json b/src/grammar.json index f7f352b..ab0bf6a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3290,6 +3290,31 @@ "name": "_type_identifier" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "underlying_type", + "content": { + "type": "SYMBOL", + "name": "primitive_type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -3577,12 +3602,29 @@ "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] }, { "type": "REPEAT", @@ -3594,12 +3636,29 @@ "value": "," }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] } ] } @@ -3611,18 +3670,6 @@ } ] }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "bitfield_clause" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": ";" @@ -6731,6 +6778,9 @@ [ "_declaration_modifiers", "attributed_statement" + ], + [ + "enum_specifier" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 22a8d8a..7feb747 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1303,6 +1303,16 @@ "named": true } ] + }, + "underlying_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "primitive_type", + "named": true + } + ] } } }, diff --git a/src/parser.c b/src/parser.c index 8ce80e3..492298a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1495 +#define STATE_COUNT 1496 #define LARGE_STATE_COUNT 385 #define SYMBOL_COUNT 273 #define ALIAS_COUNT 3 #define TOKEN_COUNT 132 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 26 +#define FIELD_COUNT 27 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 87 +#define PRODUCTION_ID_COUNT 90 enum { sym_identifier = 1, @@ -96,9 +96,9 @@ enum { anon_sym_short = 77, sym_primitive_type = 78, anon_sym_enum = 79, - anon_sym_struct = 80, - anon_sym_union = 81, - anon_sym_COLON = 82, + anon_sym_COLON = 80, + anon_sym_struct = 81, + anon_sym_union = 82, anon_sym_if = 83, anon_sym_else = 84, anon_sym_switch = 85, @@ -375,9 +375,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_short] = "short", [sym_primitive_type] = "primitive_type", [anon_sym_enum] = "enum", + [anon_sym_COLON] = ":", [anon_sym_struct] = "struct", [anon_sym_union] = "union", - [anon_sym_COLON] = ":", [anon_sym_if] = "if", [anon_sym_else] = "else", [anon_sym_switch] = "switch", @@ -654,9 +654,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_short] = anon_sym_short, [sym_primitive_type] = sym_primitive_type, [anon_sym_enum] = anon_sym_enum, + [anon_sym_COLON] = anon_sym_COLON, [anon_sym_struct] = anon_sym_struct, [anon_sym_union] = anon_sym_union, - [anon_sym_COLON] = anon_sym_COLON, [anon_sym_if] = anon_sym_if, [anon_sym_else] = anon_sym_else, [anon_sym_switch] = anon_sym_switch, @@ -1173,15 +1173,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_struct] = { + [anon_sym_COLON] = { .visible = true, .named = false, }, - [anon_sym_union] = { + [anon_sym_struct] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { + [anon_sym_union] = { .visible = true, .named = false, }, @@ -1990,8 +1990,9 @@ enum { field_right = 22, field_size = 23, field_type = 24, - field_update = 25, - field_value = 26, + field_underlying_type = 25, + field_update = 26, + field_value = 27, }; static const char * const ts_field_names[] = { @@ -2020,6 +2021,7 @@ static const char * const ts_field_names[] = { [field_right] = "right", [field_size] = "size", [field_type] = "type", + [field_underlying_type] = "underlying_type", [field_update] = "update", [field_value] = "value", }; @@ -2065,49 +2067,52 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [39] = {.index = 57, .length = 2}, [40] = {.index = 59, .length = 2}, [41] = {.index = 61, .length = 2}, - [43] = {.index = 63, .length = 2}, - [44] = {.index = 65, .length = 1}, - [45] = {.index = 66, .length = 2}, - [46] = {.index = 68, .length = 1}, - [47] = {.index = 69, .length = 1}, - [48] = {.index = 70, .length = 2}, - [49] = {.index = 72, .length = 3}, - [50] = {.index = 75, .length = 2}, - [51] = {.index = 77, .length = 3}, - [52] = {.index = 80, .length = 2}, + [42] = {.index = 63, .length = 2}, + [44] = {.index = 65, .length = 2}, + [45] = {.index = 67, .length = 1}, + [46] = {.index = 68, .length = 2}, + [47] = {.index = 70, .length = 1}, + [48] = {.index = 71, .length = 1}, + [49] = {.index = 72, .length = 2}, + [50] = {.index = 74, .length = 3}, + [51] = {.index = 77, .length = 2}, + [52] = {.index = 79, .length = 3}, [53] = {.index = 82, .length = 2}, - [54] = {.index = 84, .length = 3}, - [55] = {.index = 87, .length = 2}, + [54] = {.index = 84, .length = 2}, + [55] = {.index = 86, .length = 3}, [56] = {.index = 89, .length = 2}, - [57] = {.index = 91, .length = 1}, - [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 3}, - [60] = {.index = 97, .length = 2}, + [57] = {.index = 91, .length = 2}, + [58] = {.index = 93, .length = 1}, + [59] = {.index = 94, .length = 2}, + [60] = {.index = 96, .length = 3}, [61] = {.index = 99, .length = 2}, - [62] = {.index = 101, .length = 3}, - [63] = {.index = 104, .length = 2}, - [64] = {.index = 106, .length = 1}, - [65] = {.index = 107, .length = 2}, - [66] = {.index = 109, .length = 3}, + [62] = {.index = 101, .length = 2}, + [63] = {.index = 103, .length = 3}, + [64] = {.index = 106, .length = 3}, + [65] = {.index = 109, .length = 2}, + [66] = {.index = 111, .length = 1}, [67] = {.index = 112, .length = 2}, - [68] = {.index = 114, .length = 1}, - [70] = {.index = 115, .length = 3}, - [71] = {.index = 118, .length = 1}, - [72] = {.index = 119, .length = 2}, - [73] = {.index = 121, .length = 2}, - [74] = {.index = 123, .length = 1}, - [75] = {.index = 124, .length = 2}, - [76] = {.index = 126, .length = 2}, - [77] = {.index = 128, .length = 2}, - [78] = {.index = 130, .length = 2}, - [79] = {.index = 132, .length = 3}, - [80] = {.index = 135, .length = 3}, + [68] = {.index = 114, .length = 3}, + [69] = {.index = 117, .length = 2}, + [70] = {.index = 119, .length = 1}, + [72] = {.index = 120, .length = 3}, + [73] = {.index = 123, .length = 1}, + [74] = {.index = 124, .length = 2}, + [75] = {.index = 126, .length = 2}, + [76] = {.index = 128, .length = 1}, + [77] = {.index = 129, .length = 2}, + [78] = {.index = 131, .length = 2}, + [79] = {.index = 133, .length = 3}, + [80] = {.index = 136, .length = 2}, [81] = {.index = 138, .length = 2}, [82] = {.index = 140, .length = 3}, - [83] = {.index = 143, .length = 4}, - [84] = {.index = 147, .length = 3}, - [85] = {.index = 150, .length = 3}, - [86] = {.index = 153, .length = 4}, + [83] = {.index = 143, .length = 3}, + [84] = {.index = 146, .length = 2}, + [85] = {.index = 148, .length = 3}, + [86] = {.index = 151, .length = 4}, + [87] = {.index = 155, .length = 3}, + [88] = {.index = 158, .length = 3}, + [89] = {.index = 161, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2213,138 +2218,149 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_prefix, 0}, [63] = + {field_name, 1}, + {field_underlying_type, 3}, + [65] = {field_body, 3}, {field_name, 2}, - [65] = + [67] = {field_type, 2}, - [66] = + [68] = {field_name, 0}, {field_type, 2}, - [68] = + [70] = {field_declarator, 2}, - [69] = + [71] = {field_declarator, 0}, - [70] = + [72] = {field_declarator, 0}, {field_value, 2}, - [72] = + [74] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [75] = + [77] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [77] = + [79] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [80] = + [82] = {field_argument, 0}, {field_index, 2}, - [82] = + [84] = {field_alternative, 3}, {field_condition, 0}, - [84] = + [86] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [87] = + [89] = {field_alternative, 3}, {field_condition, 1}, - [89] = + [91] = {field_alternative, 3}, {field_name, 1}, - [91] = + [93] = {field_size, 1}, - [92] = + [94] = {field_declarator, 3}, {field_type, 1}, - [94] = + [96] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [97] = + [99] = {field_declarator, 3}, {field_type, 2}, - [99] = + [101] = {field_name, 0}, {field_value, 2}, - [101] = + [103] = + {field_body, 4}, + {field_name, 1}, + {field_underlying_type, 3}, + [106] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [104] = + [109] = {field_body, 1}, {field_condition, 3}, - [106] = + [111] = {field_declarator, 3}, - [107] = + [112] = {field_declarator, 0}, {field_size, 2}, - [109] = + [114] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [112] = + [117] = {field_alternative, 4}, {field_condition, 1}, - [114] = + [119] = {field_size, 2}, - [115] = + [120] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 2}, - [118] = + [123] = {field_body, 5}, - [119] = + [124] = {field_body, 5}, {field_initializer, 2}, - [121] = + [126] = {field_member, 4}, {field_type, 2}, - [123] = + [128] = {field_declarator, 4}, - [124] = + [129] = {field_declarator, 0}, {field_size, 3}, - [126] = + [131] = {field_designator, 0}, {field_value, 2}, - [128] = + [133] = + {field_declarator, 1}, + {field_declarator, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [136] = {field_body, 6}, {field_update, 4}, - [130] = + [138] = {field_body, 6}, {field_condition, 3}, - [132] = + [140] = {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [135] = + [143] = {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [138] = + [146] = {field_body, 6}, {field_initializer, 2}, - [140] = + [148] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [143] = + [151] = {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [147] = + [155] = {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [150] = + [158] = {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [153] = + [161] = {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, @@ -2378,15 +2394,21 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_field_identifier, }, [42] = { - [0] = alias_sym_field_identifier, + [1] = alias_sym_type_identifier, }, [43] = { + [0] = alias_sym_field_identifier, + }, + [44] = { [2] = alias_sym_type_identifier, }, - [69] = { + [63] = { + [1] = alias_sym_type_identifier, + }, + [71] = { [1] = alias_sym_field_identifier, }, - [73] = { + [75] = { [4] = alias_sym_field_identifier, }, }; @@ -2400,65 +2422,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 3, + [4] = 4, + [5] = 2, [6] = 6, - [7] = 2, + [7] = 3, [8] = 8, - [9] = 8, - [10] = 3, - [11] = 2, - [12] = 12, - [13] = 12, - [14] = 12, + [9] = 2, + [10] = 4, + [11] = 3, + [12] = 4, + [13] = 13, + [14] = 8, [15] = 8, - [16] = 12, - [17] = 17, - [18] = 2, - [19] = 8, + [16] = 4, + [17] = 2, + [18] = 8, + [19] = 3, [20] = 20, [21] = 21, - [22] = 22, - [23] = 23, - [24] = 21, + [22] = 21, + [23] = 20, + [24] = 24, [25] = 25, - [26] = 22, - [27] = 23, + [26] = 26, + [27] = 27, [28] = 21, - [29] = 23, - [30] = 25, - [31] = 22, - [32] = 20, - [33] = 25, - [34] = 34, - [35] = 23, + [29] = 27, + [30] = 27, + [31] = 24, + [32] = 24, + [33] = 21, + [34] = 26, + [35] = 26, [36] = 20, [37] = 20, - [38] = 38, + [38] = 27, [39] = 39, - [40] = 25, - [41] = 22, - [42] = 21, + [40] = 26, + [41] = 24, + [42] = 42, [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, - [48] = 47, - [49] = 46, - [50] = 46, - [51] = 43, + [48] = 46, + [49] = 47, + [50] = 43, + [51] = 44, [52] = 43, - [53] = 47, - [54] = 45, - [55] = 44, - [56] = 43, - [57] = 46, + [53] = 44, + [54] = 43, + [55] = 46, + [56] = 45, + [57] = 47, [58] = 47, - [59] = 44, + [59] = 45, [60] = 44, [61] = 45, - [62] = 45, + [62] = 46, [63] = 63, [64] = 63, [65] = 63, @@ -2500,7 +2522,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 101, [102] = 102, [103] = 103, - [104] = 104, + [104] = 67, [105] = 105, [106] = 106, [107] = 107, @@ -2519,265 +2541,265 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 120, [121] = 121, [122] = 122, - [123] = 67, + [123] = 123, [124] = 124, [125] = 125, - [126] = 70, - [127] = 95, - [128] = 100, + [126] = 126, + [127] = 127, + [128] = 71, [129] = 129, [130] = 130, - [131] = 130, - [132] = 88, + [131] = 82, + [132] = 132, [133] = 101, - [134] = 134, + [134] = 92, [135] = 135, - [136] = 85, - [137] = 103, - [138] = 102, - [139] = 139, + [136] = 96, + [137] = 93, + [138] = 138, + [139] = 127, [140] = 140, - [141] = 141, + [141] = 99, [142] = 142, - [143] = 141, - [144] = 93, - [145] = 99, - [146] = 146, - [147] = 93, - [148] = 92, - [149] = 149, - [150] = 88, + [143] = 143, + [144] = 94, + [145] = 72, + [146] = 84, + [147] = 81, + [148] = 95, + [149] = 85, + [150] = 150, [151] = 151, - [152] = 152, - [153] = 153, - [154] = 92, - [155] = 151, - [156] = 98, - [157] = 157, - [158] = 158, - [159] = 97, - [160] = 160, - [161] = 94, - [162] = 162, - [163] = 68, - [164] = 162, - [165] = 160, - [166] = 83, - [167] = 96, - [168] = 102, - [169] = 103, - [170] = 71, - [171] = 85, - [172] = 72, - [173] = 135, - [174] = 73, - [175] = 74, - [176] = 176, - [177] = 75, - [178] = 76, - [179] = 95, - [180] = 78, - [181] = 158, - [182] = 157, - [183] = 183, - [184] = 91, - [185] = 140, - [186] = 153, - [187] = 152, - [188] = 149, - [189] = 130, - [190] = 183, - [191] = 87, - [192] = 90, - [193] = 183, - [194] = 100, - [195] = 68, - [196] = 94, - [197] = 89, - [198] = 146, - [199] = 86, - [200] = 69, - [201] = 142, - [202] = 84, - [203] = 101, - [204] = 99, - [205] = 176, - [206] = 140, - [207] = 98, - [208] = 97, - [209] = 160, - [210] = 139, - [211] = 82, - [212] = 162, - [213] = 81, - [214] = 83, - [215] = 80, - [216] = 96, - [217] = 72, - [218] = 158, - [219] = 151, - [220] = 157, - [221] = 91, - [222] = 153, - [223] = 152, - [224] = 79, - [225] = 141, - [226] = 149, - [227] = 90, - [228] = 129, - [229] = 135, - [230] = 89, - [231] = 70, - [232] = 71, - [233] = 77, - [234] = 176, - [235] = 146, - [236] = 72, - [237] = 86, - [238] = 69, - [239] = 129, - [240] = 134, - [241] = 142, - [242] = 73, - [243] = 74, - [244] = 77, - [245] = 134, + [152] = 130, + [153] = 132, + [154] = 91, + [155] = 155, + [156] = 101, + [157] = 84, + [158] = 90, + [159] = 87, + [160] = 103, + [161] = 88, + [162] = 86, + [163] = 69, + [164] = 151, + [165] = 165, + [166] = 166, + [167] = 165, + [168] = 71, + [169] = 151, + [170] = 69, + [171] = 166, + [172] = 129, + [173] = 82, + [174] = 92, + [175] = 97, + [176] = 102, + [177] = 86, + [178] = 87, + [179] = 90, + [180] = 126, + [181] = 135, + [182] = 150, + [183] = 103, + [184] = 88, + [185] = 185, + [186] = 96, + [187] = 93, + [188] = 98, + [189] = 138, + [190] = 127, + [191] = 140, + [192] = 99, + [193] = 95, + [194] = 142, + [195] = 143, + [196] = 81, + [197] = 197, + [198] = 150, + [199] = 199, + [200] = 72, + [201] = 83, + [202] = 81, + [203] = 135, + [204] = 83, + [205] = 205, + [206] = 138, + [207] = 197, + [208] = 130, + [209] = 132, + [210] = 127, + [211] = 101, + [212] = 84, + [213] = 103, + [214] = 80, + [215] = 88, + [216] = 89, + [217] = 70, + [218] = 72, + [219] = 143, + [220] = 142, + [221] = 100, + [222] = 68, + [223] = 73, + [224] = 99, + [225] = 140, + [226] = 74, + [227] = 199, + [228] = 97, + [229] = 75, + [230] = 76, + [231] = 77, + [232] = 79, + [233] = 78, + [234] = 205, + [235] = 185, + [236] = 199, + [237] = 77, + [238] = 165, + [239] = 102, + [240] = 138, + [241] = 140, + [242] = 155, + [243] = 76, + [244] = 75, + [245] = 78, [246] = 79, [247] = 80, - [248] = 81, - [249] = 82, - [250] = 139, - [251] = 140, - [252] = 75, - [253] = 84, - [254] = 142, - [255] = 69, - [256] = 86, - [257] = 146, - [258] = 89, - [259] = 90, - [260] = 149, - [261] = 152, - [262] = 153, - [263] = 76, - [264] = 134, - [265] = 91, - [266] = 77, - [267] = 157, - [268] = 158, - [269] = 95, - [270] = 78, - [271] = 96, - [272] = 88, - [273] = 162, - [274] = 160, - [275] = 97, - [276] = 98, - [277] = 87, - [278] = 99, - [279] = 101, - [280] = 129, - [281] = 100, - [282] = 176, - [283] = 79, - [284] = 135, + [248] = 97, + [249] = 142, + [250] = 102, + [251] = 143, + [252] = 130, + [253] = 74, + [254] = 89, + [255] = 126, + [256] = 98, + [257] = 132, + [258] = 166, + [259] = 205, + [260] = 70, + [261] = 85, + [262] = 68, + [263] = 100, + [264] = 73, + [265] = 73, + [266] = 93, + [267] = 96, + [268] = 135, + [269] = 185, + [270] = 92, + [271] = 70, + [272] = 94, + [273] = 82, + [274] = 129, + [275] = 71, + [276] = 91, + [277] = 155, + [278] = 165, + [279] = 151, + [280] = 166, + [281] = 74, + [282] = 155, + [283] = 91, + [284] = 75, [285] = 94, - [286] = 68, - [287] = 85, - [288] = 84, - [289] = 103, - [290] = 183, - [291] = 102, - [292] = 80, - [293] = 141, - [294] = 87, - [295] = 93, - [296] = 81, - [297] = 92, - [298] = 151, - [299] = 83, - [300] = 82, - [301] = 70, - [302] = 71, - [303] = 78, - [304] = 139, - [305] = 130, - [306] = 76, - [307] = 75, - [308] = 74, - [309] = 73, - [310] = 107, - [311] = 105, - [312] = 105, - [313] = 120, - [314] = 104, - [315] = 125, - [316] = 124, - [317] = 120, - [318] = 119, - [319] = 122, - [320] = 121, - [321] = 117, - [322] = 116, - [323] = 115, - [324] = 104, - [325] = 124, - [326] = 125, - [327] = 120, - [328] = 108, - [329] = 119, - [330] = 108, - [331] = 105, - [332] = 118, - [333] = 117, - [334] = 106, - [335] = 107, - [336] = 104, - [337] = 121, - [338] = 113, - [339] = 112, - [340] = 111, - [341] = 109, - [342] = 114, - [343] = 109, - [344] = 111, - [345] = 106, - [346] = 119, - [347] = 107, + [286] = 129, + [287] = 98, + [288] = 185, + [289] = 100, + [290] = 68, + [291] = 85, + [292] = 76, + [293] = 205, + [294] = 77, + [295] = 69, + [296] = 199, + [297] = 86, + [298] = 87, + [299] = 90, + [300] = 150, + [301] = 95, + [302] = 78, + [303] = 79, + [304] = 83, + [305] = 197, + [306] = 126, + [307] = 80, + [308] = 89, + [309] = 197, + [310] = 115, + [311] = 109, + [312] = 118, + [313] = 114, + [314] = 107, + [315] = 114, + [316] = 106, + [317] = 123, + [318] = 111, + [319] = 106, + [320] = 111, + [321] = 110, + [322] = 109, + [323] = 120, + [324] = 122, + [325] = 110, + [326] = 113, + [327] = 124, + [328] = 121, + [329] = 114, + [330] = 112, + [331] = 118, + [332] = 124, + [333] = 105, + [334] = 108, + [335] = 118, + [336] = 119, + [337] = 105, + [338] = 116, + [339] = 124, + [340] = 113, + [341] = 120, + [342] = 113, + [343] = 117, + [344] = 108, + [345] = 125, + [346] = 125, + [347] = 117, [348] = 110, - [349] = 110, - [350] = 108, - [351] = 118, - [352] = 112, - [353] = 115, + [349] = 123, + [350] = 122, + [351] = 115, + [352] = 105, + [353] = 117, [354] = 112, - [355] = 114, - [356] = 124, - [357] = 110, - [358] = 125, - [359] = 115, - [360] = 117, - [361] = 121, - [362] = 118, - [363] = 122, - [364] = 122, - [365] = 106, - [366] = 109, - [367] = 116, - [368] = 111, - [369] = 113, - [370] = 113, - [371] = 116, - [372] = 114, + [355] = 106, + [356] = 116, + [357] = 121, + [358] = 115, + [359] = 116, + [360] = 111, + [361] = 109, + [362] = 125, + [363] = 123, + [364] = 107, + [365] = 119, + [366] = 112, + [367] = 121, + [368] = 108, + [369] = 107, + [370] = 120, + [371] = 119, + [372] = 122, [373] = 373, - [374] = 373, - [375] = 373, - [376] = 376, - [377] = 376, - [378] = 376, + [374] = 374, + [375] = 374, + [376] = 373, + [377] = 373, + [378] = 373, [379] = 67, - [380] = 373, - [381] = 376, + [380] = 374, + [381] = 374, [382] = 382, [383] = 383, [384] = 67, @@ -2788,197 +2810,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [389] = 389, [390] = 390, [391] = 391, - [392] = 387, + [392] = 390, [393] = 393, - [394] = 390, - [395] = 391, - [396] = 396, - [397] = 388, - [398] = 390, - [399] = 388, - [400] = 391, - [401] = 387, + [394] = 391, + [395] = 395, + [396] = 390, + [397] = 391, + [398] = 393, + [399] = 387, + [400] = 387, + [401] = 393, [402] = 402, [403] = 403, [404] = 404, [405] = 405, - [406] = 402, + [406] = 406, [407] = 407, - [408] = 408, - [409] = 402, - [410] = 402, + [408] = 405, + [409] = 405, + [410] = 405, [411] = 411, - [412] = 412, + [412] = 405, [413] = 413, - [414] = 402, + [414] = 414, [415] = 415, - [416] = 416, - [417] = 402, - [418] = 402, - [419] = 419, + [416] = 405, + [417] = 405, + [418] = 418, + [419] = 405, [420] = 420, - [421] = 402, + [421] = 421, [422] = 422, [423] = 423, [424] = 424, - [425] = 424, + [425] = 425, [426] = 426, - [427] = 427, - [428] = 424, + [427] = 424, + [428] = 428, [429] = 429, - [430] = 430, + [430] = 424, [431] = 431, [432] = 432, [433] = 433, [434] = 434, [435] = 433, - [436] = 436, - [437] = 433, + [436] = 433, + [437] = 437, [438] = 433, [439] = 439, [440] = 440, [441] = 441, - [442] = 442, + [442] = 440, [443] = 443, - [444] = 444, - [445] = 439, - [446] = 441, - [447] = 447, + [444] = 439, + [445] = 445, + [446] = 446, + [447] = 446, [448] = 448, - [449] = 440, + [449] = 449, [450] = 439, - [451] = 451, - [452] = 448, - [453] = 451, - [454] = 451, - [455] = 441, - [456] = 439, - [457] = 447, + [451] = 445, + [452] = 441, + [453] = 440, + [454] = 454, + [455] = 454, + [456] = 448, + [457] = 457, [458] = 458, - [459] = 441, - [460] = 460, - [461] = 440, - [462] = 444, - [463] = 440, - [464] = 444, - [465] = 451, - [466] = 460, - [467] = 443, - [468] = 443, - [469] = 469, - [470] = 470, - [471] = 442, - [472] = 442, - [473] = 469, - [474] = 442, - [475] = 460, - [476] = 448, - [477] = 447, - [478] = 469, - [479] = 469, - [480] = 443, - [481] = 460, - [482] = 447, - [483] = 444, - [484] = 448, + [459] = 459, + [460] = 443, + [461] = 459, + [462] = 449, + [463] = 457, + [464] = 459, + [465] = 441, + [466] = 440, + [467] = 457, + [468] = 448, + [469] = 449, + [470] = 443, + [471] = 448, + [472] = 445, + [473] = 449, + [474] = 441, + [475] = 446, + [476] = 459, + [477] = 445, + [478] = 446, + [479] = 443, + [480] = 454, + [481] = 454, + [482] = 439, + [483] = 457, + [484] = 484, [485] = 485, [486] = 486, [487] = 487, [488] = 488, [489] = 489, [490] = 490, - [491] = 491, + [491] = 490, [492] = 492, [493] = 493, [494] = 494, [495] = 495, - [496] = 496, - [497] = 497, + [496] = 495, + [497] = 495, [498] = 498, - [499] = 494, - [500] = 487, + [499] = 499, + [500] = 500, [501] = 501, [502] = 502, - [503] = 497, - [504] = 494, - [505] = 494, + [503] = 498, + [504] = 504, + [505] = 495, [506] = 506, [507] = 507, [508] = 508, [509] = 509, - [510] = 509, + [510] = 510, [511] = 511, [512] = 512, [513] = 513, [514] = 514, [515] = 515, - [516] = 515, + [516] = 516, [517] = 517, - [518] = 518, - [519] = 519, - [520] = 519, - [521] = 514, - [522] = 522, - [523] = 506, - [524] = 506, + [518] = 514, + [519] = 513, + [520] = 520, + [521] = 521, + [522] = 516, + [523] = 509, + [524] = 524, [525] = 525, - [526] = 525, - [527] = 527, - [528] = 517, + [526] = 508, + [527] = 512, + [528] = 528, [529] = 529, [530] = 530, - [531] = 529, - [532] = 507, - [533] = 525, - [534] = 512, - [535] = 512, - [536] = 525, + [531] = 508, + [532] = 512, + [533] = 528, + [534] = 514, + [535] = 513, + [536] = 513, [537] = 507, [538] = 538, - [539] = 527, - [540] = 519, + [539] = 514, + [540] = 508, [541] = 541, - [542] = 527, - [543] = 541, - [544] = 514, - [545] = 522, - [546] = 546, - [547] = 513, - [548] = 511, - [549] = 515, - [550] = 541, - [551] = 513, - [552] = 529, - [553] = 522, - [554] = 518, - [555] = 555, - [556] = 518, - [557] = 517, - [558] = 558, - [559] = 559, - [560] = 513, - [561] = 561, + [542] = 511, + [543] = 543, + [544] = 511, + [545] = 506, + [546] = 528, + [547] = 506, + [548] = 529, + [549] = 525, + [550] = 524, + [551] = 512, + [552] = 552, + [553] = 553, + [554] = 516, + [555] = 517, + [556] = 520, + [557] = 524, + [558] = 525, + [559] = 543, + [560] = 529, + [561] = 506, [562] = 515, - [563] = 518, - [564] = 512, - [565] = 514, - [566] = 559, - [567] = 519, - [568] = 568, - [569] = 511, - [570] = 570, - [571] = 509, - [572] = 509, - [573] = 511, - [574] = 506, - [575] = 522, - [576] = 527, - [577] = 541, + [563] = 528, + [564] = 507, + [565] = 565, + [566] = 566, + [567] = 520, + [568] = 516, + [569] = 517, + [570] = 520, + [571] = 524, + [572] = 525, + [573] = 515, + [574] = 517, + [575] = 515, + [576] = 541, + [577] = 511, [578] = 507, - [579] = 529, - [580] = 517, - [581] = 538, - [582] = 422, + [579] = 541, + [580] = 529, + [581] = 541, + [582] = 423, [583] = 583, [584] = 584, [585] = 585, @@ -3017,250 +3039,250 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [618] = 618, [619] = 619, [620] = 620, - [621] = 621, - [622] = 583, - [623] = 383, - [624] = 602, - [625] = 382, + [621] = 382, + [622] = 383, + [623] = 583, + [624] = 624, + [625] = 589, [626] = 626, [627] = 626, [628] = 626, [629] = 626, - [630] = 588, - [631] = 631, - [632] = 612, - [633] = 610, - [634] = 591, - [635] = 609, - [636] = 590, - [637] = 608, - [638] = 587, - [639] = 607, - [640] = 631, - [641] = 604, - [642] = 585, - [643] = 598, - [644] = 631, - [645] = 601, - [646] = 619, - [647] = 614, - [648] = 599, - [649] = 649, - [650] = 618, - [651] = 613, - [652] = 631, - [653] = 602, + [630] = 596, + [631] = 599, + [632] = 632, + [633] = 632, + [634] = 632, + [635] = 593, + [636] = 617, + [637] = 587, + [638] = 615, + [639] = 614, + [640] = 613, + [641] = 612, + [642] = 632, + [643] = 584, + [644] = 611, + [645] = 610, + [646] = 609, + [647] = 602, + [648] = 590, + [649] = 608, + [650] = 607, + [651] = 603, + [652] = 616, + [653] = 653, [654] = 654, - [655] = 586, - [656] = 584, - [657] = 603, + [655] = 589, + [656] = 586, + [657] = 620, [658] = 658, [659] = 659, [660] = 660, [661] = 661, [662] = 662, - [663] = 663, - [664] = 599, + [663] = 660, + [664] = 120, [665] = 665, - [666] = 114, - [667] = 116, - [668] = 121, - [669] = 125, - [670] = 124, - [671] = 112, - [672] = 612, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, [673] = 673, [674] = 674, - [675] = 675, - [676] = 610, - [677] = 609, - [678] = 588, - [679] = 608, - [680] = 607, - [681] = 604, - [682] = 382, - [683] = 601, - [684] = 585, - [685] = 685, - [686] = 618, - [687] = 660, - [688] = 598, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 614, - [695] = 695, - [696] = 383, - [697] = 697, - [698] = 698, + [675] = 121, + [676] = 118, + [677] = 617, + [678] = 678, + [679] = 116, + [680] = 602, + [681] = 113, + [682] = 584, + [683] = 683, + [684] = 607, + [685] = 593, + [686] = 686, + [687] = 608, + [688] = 609, + [689] = 610, + [690] = 611, + [691] = 612, + [692] = 613, + [693] = 614, + [694] = 615, + [695] = 114, + [696] = 487, + [697] = 383, + [698] = 382, [699] = 699, - [700] = 700, - [701] = 701, + [700] = 501, + [701] = 669, [702] = 702, - [703] = 489, - [704] = 704, - [705] = 493, - [706] = 112, - [707] = 675, - [708] = 674, - [709] = 691, - [710] = 121, - [711] = 673, - [712] = 116, - [713] = 114, - [714] = 698, - [715] = 697, - [716] = 716, - [717] = 697, - [718] = 663, - [719] = 689, - [720] = 665, - [721] = 685, - [722] = 699, - [723] = 723, - [724] = 695, - [725] = 690, - [726] = 691, - [727] = 690, - [728] = 695, - [729] = 699, - [730] = 698, - [731] = 675, - [732] = 732, - [733] = 733, - [734] = 689, - [735] = 735, - [736] = 732, - [737] = 732, - [738] = 693, - [739] = 125, - [740] = 124, - [741] = 114, - [742] = 663, - [743] = 743, - [744] = 732, - [745] = 674, - [746] = 112, - [747] = 124, - [748] = 673, - [749] = 749, - [750] = 685, - [751] = 125, - [752] = 693, - [753] = 121, - [754] = 116, - [755] = 743, - [756] = 665, + [703] = 703, + [704] = 702, + [705] = 705, + [706] = 665, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 671, + [711] = 672, + [712] = 673, + [713] = 674, + [714] = 666, + [715] = 674, + [716] = 114, + [717] = 673, + [718] = 672, + [719] = 662, + [720] = 686, + [721] = 703, + [722] = 666, + [723] = 678, + [724] = 724, + [725] = 113, + [726] = 667, + [727] = 662, + [728] = 668, + [729] = 116, + [730] = 120, + [731] = 113, + [732] = 667, + [733] = 686, + [734] = 668, + [735] = 118, + [736] = 669, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 678, + [741] = 671, + [742] = 114, + [743] = 702, + [744] = 670, + [745] = 121, + [746] = 665, + [747] = 702, + [748] = 121, + [749] = 118, + [750] = 116, + [751] = 670, + [752] = 120, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, [757] = 757, [758] = 758, - [759] = 759, + [759] = 755, [760] = 760, - [761] = 761, - [762] = 761, - [763] = 759, - [764] = 760, - [765] = 765, - [766] = 766, - [767] = 761, + [761] = 756, + [762] = 762, + [763] = 753, + [764] = 764, + [765] = 764, + [766] = 755, + [767] = 767, [768] = 768, [769] = 769, - [770] = 759, - [771] = 771, + [770] = 764, + [771] = 754, [772] = 772, - [773] = 773, - [774] = 761, - [775] = 760, - [776] = 776, - [777] = 772, - [778] = 769, + [773] = 767, + [774] = 768, + [775] = 755, + [776] = 769, + [777] = 756, + [778] = 778, [779] = 779, - [780] = 776, + [780] = 780, [781] = 781, - [782] = 782, - [783] = 772, - [784] = 773, - [785] = 785, - [786] = 759, - [787] = 773, - [788] = 765, - [789] = 765, - [790] = 768, - [791] = 776, - [792] = 760, - [793] = 781, - [794] = 771, - [795] = 785, - [796] = 766, - [797] = 766, - [798] = 769, - [799] = 771, - [800] = 768, - [801] = 776, - [802] = 771, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 769, - [807] = 781, - [808] = 781, - [809] = 768, - [810] = 766, - [811] = 765, - [812] = 773, - [813] = 772, + [782] = 768, + [783] = 778, + [784] = 784, + [785] = 784, + [786] = 753, + [787] = 768, + [788] = 778, + [789] = 789, + [790] = 758, + [791] = 791, + [792] = 756, + [793] = 753, + [794] = 789, + [795] = 754, + [796] = 784, + [797] = 778, + [798] = 784, + [799] = 799, + [800] = 789, + [801] = 758, + [802] = 789, + [803] = 754, + [804] = 769, + [805] = 764, + [806] = 767, + [807] = 769, + [808] = 757, + [809] = 758, + [810] = 767, + [811] = 811, + [812] = 812, + [813] = 813, [814] = 814, [815] = 815, - [816] = 614, - [817] = 598, + [816] = 617, + [817] = 615, [818] = 818, - [819] = 815, - [820] = 820, + [819] = 818, + [820] = 614, [821] = 821, [822] = 822, [823] = 823, - [824] = 815, - [825] = 585, + [824] = 824, + [825] = 825, [826] = 826, - [827] = 814, + [827] = 827, [828] = 828, [829] = 829, [830] = 830, - [831] = 831, - [832] = 599, + [831] = 612, + [832] = 832, [833] = 833, [834] = 834, - [835] = 604, - [836] = 607, - [837] = 837, - [838] = 838, - [839] = 608, - [840] = 840, - [841] = 814, - [842] = 842, + [835] = 835, + [836] = 836, + [837] = 818, + [838] = 825, + [839] = 839, + [840] = 825, + [841] = 818, + [842] = 593, [843] = 843, - [844] = 601, - [845] = 815, - [846] = 846, - [847] = 618, + [844] = 844, + [845] = 845, + [846] = 611, + [847] = 610, [848] = 609, [849] = 849, - [850] = 814, - [851] = 851, - [852] = 852, - [853] = 610, - [854] = 854, - [855] = 855, - [856] = 612, + [850] = 608, + [851] = 613, + [852] = 602, + [853] = 607, + [854] = 584, + [855] = 825, + [856] = 856, [857] = 857, [858] = 858, - [859] = 859, - [860] = 588, - [861] = 861, - [862] = 861, - [863] = 861, - [864] = 861, + [859] = 858, + [860] = 858, + [861] = 858, + [862] = 862, + [863] = 863, + [864] = 864, [865] = 865, [866] = 866, [867] = 867, @@ -3269,17 +3291,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [870] = 870, [871] = 871, [872] = 872, - [873] = 873, - [874] = 658, + [873] = 658, + [874] = 872, [875] = 875, - [876] = 876, + [876] = 875, [877] = 877, - [878] = 877, + [878] = 875, [879] = 877, - [880] = 876, - [881] = 876, - [882] = 876, - [883] = 877, + [880] = 872, + [881] = 875, + [882] = 872, + [883] = 883, [884] = 884, [885] = 885, [886] = 886, @@ -3306,12 +3328,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [907] = 907, [908] = 908, [909] = 908, - [910] = 906, - [911] = 911, - [912] = 911, + [910] = 907, + [911] = 906, + [912] = 912, [913] = 913, [914] = 914, - [915] = 915, + [915] = 618, [916] = 916, [917] = 917, [918] = 918, @@ -3328,178 +3350,178 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [929] = 929, [930] = 930, [931] = 931, - [932] = 914, + [932] = 919, [933] = 933, [934] = 934, [935] = 935, [936] = 936, [937] = 937, [938] = 938, - [939] = 926, - [940] = 928, - [941] = 941, + [939] = 939, + [940] = 940, + [941] = 914, [942] = 942, - [943] = 914, + [943] = 943, [944] = 944, [945] = 945, - [946] = 941, + [946] = 946, [947] = 947, - [948] = 942, - [949] = 914, - [950] = 950, - [951] = 913, - [952] = 930, - [953] = 936, - [954] = 934, - [955] = 955, - [956] = 933, - [957] = 931, - [958] = 958, - [959] = 959, + [948] = 948, + [949] = 949, + [950] = 919, + [951] = 947, + [952] = 952, + [953] = 953, + [954] = 919, + [955] = 940, + [956] = 956, + [957] = 952, + [958] = 947, + [959] = 956, [960] = 960, [961] = 961, [962] = 962, [963] = 963, [964] = 964, - [965] = 965, + [965] = 934, [966] = 966, - [967] = 616, - [968] = 923, - [969] = 930, - [970] = 960, - [971] = 947, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 929, - [976] = 976, - [977] = 972, + [967] = 935, + [968] = 936, + [969] = 937, + [970] = 939, + [971] = 938, + [972] = 943, + [973] = 942, + [974] = 929, + [975] = 975, + [976] = 926, + [977] = 916, [978] = 978, - [979] = 978, - [980] = 917, - [981] = 981, - [982] = 982, - [983] = 976, - [984] = 749, + [979] = 918, + [980] = 927, + [981] = 928, + [982] = 930, + [983] = 618, + [984] = 946, [985] = 985, - [986] = 986, + [986] = 985, [987] = 987, - [988] = 963, - [989] = 978, - [990] = 916, - [991] = 961, - [992] = 973, - [993] = 981, - [994] = 915, - [995] = 944, - [996] = 996, - [997] = 981, - [998] = 978, - [999] = 959, - [1000] = 616, - [1001] = 919, - [1002] = 1002, - [1003] = 1003, - [1004] = 918, - [1005] = 927, - [1006] = 920, - [1007] = 921, + [988] = 945, + [989] = 944, + [990] = 990, + [991] = 991, + [992] = 931, + [993] = 993, + [994] = 994, + [995] = 990, + [996] = 990, + [997] = 997, + [998] = 998, + [999] = 978, + [1000] = 1000, + [1001] = 1001, + [1002] = 780, + [1003] = 978, + [1004] = 913, + [1005] = 921, + [1006] = 978, + [1007] = 917, [1008] = 1008, [1009] = 922, - [1010] = 1010, + [1010] = 925, [1011] = 924, - [1012] = 1012, - [1013] = 925, + [1012] = 923, + [1013] = 1013, [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 1017, - [1019] = 1017, + [1018] = 1018, + [1019] = 1019, [1020] = 1020, - [1021] = 1021, - [1022] = 1022, - [1023] = 1020, - [1024] = 1022, - [1025] = 1021, - [1026] = 1026, - [1027] = 1022, - [1028] = 1021, - [1029] = 1022, + [1021] = 1020, + [1022] = 1018, + [1023] = 1019, + [1024] = 1017, + [1025] = 1020, + [1026] = 864, + [1027] = 1027, + [1028] = 1017, + [1029] = 1018, [1030] = 1020, - [1031] = 1020, - [1032] = 1021, - [1033] = 1033, + [1031] = 1018, + [1032] = 1017, + [1033] = 1019, [1034] = 1034, [1035] = 1035, [1036] = 1036, [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 1033, - [1041] = 1035, - [1042] = 1033, + [1040] = 1035, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, - [1044] = 1044, + [1044] = 1041, [1045] = 1045, - [1046] = 1046, + [1046] = 1041, [1047] = 1047, - [1048] = 1045, + [1048] = 1035, [1049] = 1049, - [1050] = 1035, - [1051] = 1033, - [1052] = 1039, + [1050] = 1050, + [1051] = 1035, + [1052] = 1038, [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1039, - [1057] = 1035, - [1058] = 1045, + [1054] = 1038, + [1055] = 1041, + [1056] = 1036, + [1057] = 1057, + [1058] = 1038, [1059] = 1059, - [1060] = 1039, + [1060] = 1036, [1061] = 1061, [1062] = 1062, - [1063] = 1063, - [1064] = 1064, + [1063] = 1062, + [1064] = 1062, [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1061, - [1070] = 1061, - [1071] = 1071, - [1072] = 1061, + [1069] = 1069, + [1070] = 1070, + [1071] = 1062, + [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, + [1076] = 1075, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1074, - [1081] = 1079, - [1082] = 1074, - [1083] = 1077, - [1084] = 1079, - [1085] = 1077, + [1080] = 1080, + [1081] = 1080, + [1082] = 1080, + [1083] = 1080, + [1084] = 1084, + [1085] = 1085, [1086] = 1086, - [1087] = 1077, - [1088] = 1074, - [1089] = 1089, - [1090] = 1090, - [1091] = 1079, - [1092] = 1092, + [1087] = 1075, + [1088] = 1075, + [1089] = 1085, + [1090] = 1085, + [1091] = 1091, + [1092] = 1085, [1093] = 1093, [1094] = 1094, - [1095] = 1095, + [1095] = 1093, [1096] = 1096, [1097] = 1097, - [1098] = 1095, - [1099] = 1095, + [1098] = 1098, + [1099] = 1093, [1100] = 1100, [1101] = 1101, - [1102] = 1102, - [1103] = 1095, + [1102] = 1093, + [1103] = 1103, [1104] = 1104, [1105] = 1105, [1106] = 1106, @@ -3538,365 +3560,366 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 1137, + [1142] = 1142, [1143] = 1143, [1144] = 1144, [1145] = 1145, [1146] = 1146, - [1147] = 1137, + [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 1151, + [1152] = 1152, [1153] = 1153, - [1154] = 1154, - [1155] = 1151, - [1156] = 1156, + [1154] = 1150, + [1155] = 1155, + [1156] = 1150, [1157] = 1151, - [1158] = 1154, + [1158] = 1149, [1159] = 1159, - [1160] = 1153, - [1161] = 1161, - [1162] = 1153, - [1163] = 1163, - [1164] = 1151, - [1165] = 1165, - [1166] = 1151, - [1167] = 1154, - [1168] = 1151, + [1160] = 1150, + [1161] = 1151, + [1162] = 1150, + [1163] = 1150, + [1164] = 1149, + [1165] = 1150, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, [1169] = 1169, [1170] = 1170, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, - [1175] = 1175, - [1176] = 1176, + [1175] = 1172, + [1176] = 1173, [1177] = 1177, [1178] = 1178, [1179] = 1179, [1180] = 1180, [1181] = 1181, [1182] = 1182, - [1183] = 1183, + [1183] = 1166, [1184] = 1184, - [1185] = 1183, + [1185] = 1173, [1186] = 1186, - [1187] = 1172, - [1188] = 1177, - [1189] = 1173, - [1190] = 1190, + [1187] = 1177, + [1188] = 1188, + [1189] = 1184, + [1190] = 1174, [1191] = 1191, - [1192] = 1192, + [1192] = 1166, [1193] = 1193, - [1194] = 1190, + [1194] = 1194, [1195] = 1195, - [1196] = 1179, - [1197] = 1175, + [1196] = 1196, + [1197] = 1174, [1198] = 1198, [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1177, - [1203] = 1179, - [1204] = 1183, - [1205] = 1190, - [1206] = 1206, - [1207] = 1183, - [1208] = 1177, + [1200] = 1181, + [1201] = 1174, + [1202] = 1196, + [1203] = 1181, + [1204] = 1204, + [1205] = 1177, + [1206] = 1171, + [1207] = 1207, + [1208] = 1208, [1209] = 1184, - [1210] = 1210, - [1211] = 1195, + [1210] = 1166, + [1211] = 1211, [1212] = 1212, - [1213] = 1175, - [1214] = 1175, - [1215] = 1195, - [1216] = 1184, - [1217] = 1195, - [1218] = 1184, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1172, + [1217] = 1217, + [1218] = 1172, [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, + [1220] = 1184, + [1221] = 1178, + [1222] = 1191, [1223] = 1223, - [1224] = 1190, - [1225] = 1186, + [1224] = 1213, + [1225] = 1171, [1226] = 1226, - [1227] = 1186, + [1227] = 1171, [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, + [1229] = 1213, + [1230] = 1191, + [1231] = 1196, [1232] = 1232, [1233] = 1233, - [1234] = 1234, - [1235] = 1235, + [1234] = 1181, + [1235] = 1194, [1236] = 1236, - [1237] = 1233, - [1238] = 1238, + [1237] = 1237, + [1238] = 1195, [1239] = 1239, [1240] = 1240, [1241] = 1241, - [1242] = 1231, + [1242] = 1242, [1243] = 1243, [1244] = 1244, [1245] = 1245, [1246] = 1246, [1247] = 1247, [1248] = 1248, - [1249] = 1233, - [1250] = 1232, - [1251] = 1251, - [1252] = 1232, - [1253] = 1232, - [1254] = 1236, - [1255] = 1239, - [1256] = 1256, + [1249] = 1249, + [1250] = 1250, + [1251] = 1244, + [1252] = 1252, + [1253] = 1252, + [1254] = 1254, + [1255] = 1255, + [1256] = 1241, [1257] = 1257, - [1258] = 1245, - [1259] = 1239, - [1260] = 1244, + [1258] = 1258, + [1259] = 1241, + [1260] = 1240, [1261] = 1261, - [1262] = 1251, - [1263] = 1244, + [1262] = 1262, + [1263] = 1263, [1264] = 1264, - [1265] = 1265, - [1266] = 1248, - [1267] = 1267, + [1265] = 1240, + [1266] = 1261, + [1267] = 1254, [1268] = 1268, [1269] = 1269, - [1270] = 1245, - [1271] = 1233, - [1272] = 1239, - [1273] = 1273, - [1274] = 1261, - [1275] = 1245, - [1276] = 1231, - [1277] = 1231, - [1278] = 1232, - [1279] = 1231, - [1280] = 1248, - [1281] = 1232, - [1282] = 1231, - [1283] = 1261, - [1284] = 1232, - [1285] = 1244, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1248, - [1290] = 1290, - [1291] = 1251, - [1292] = 1231, + [1270] = 1262, + [1271] = 1262, + [1272] = 1272, + [1273] = 1247, + [1274] = 1274, + [1275] = 1243, + [1276] = 1276, + [1277] = 1277, + [1278] = 1252, + [1279] = 1254, + [1280] = 1261, + [1281] = 1261, + [1282] = 1261, + [1283] = 1244, + [1284] = 1254, + [1285] = 1285, + [1286] = 1252, + [1287] = 1274, + [1288] = 1240, + [1289] = 1247, + [1290] = 1244, + [1291] = 1252, + [1292] = 1241, [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, + [1294] = 1262, + [1295] = 1261, + [1296] = 1274, [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, + [1298] = 1252, + [1299] = 1252, + [1300] = 1261, [1301] = 1301, - [1302] = 1300, + [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 1297, + [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, - [1310] = 1309, + [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1293, + [1313] = 1313, [1314] = 1314, - [1315] = 1299, - [1316] = 1307, - [1317] = 1317, + [1315] = 1304, + [1316] = 1316, + [1317] = 1305, [1318] = 1318, - [1319] = 1298, + [1319] = 1319, [1320] = 1320, - [1321] = 1320, + [1321] = 1321, [1322] = 1322, - [1323] = 1311, + [1323] = 1323, [1324] = 1324, - [1325] = 1298, - [1326] = 1320, + [1325] = 1325, + [1326] = 1326, [1327] = 1327, - [1328] = 1322, - [1329] = 1329, - [1330] = 1330, - [1331] = 1298, - [1332] = 1320, - [1333] = 1333, - [1334] = 1322, - [1335] = 1335, + [1328] = 1306, + [1329] = 1326, + [1330] = 1327, + [1331] = 1306, + [1332] = 1326, + [1333] = 1327, + [1334] = 1334, + [1335] = 1306, [1336] = 1336, [1337] = 1337, [1338] = 1338, - [1339] = 1339, + [1339] = 1327, [1340] = 1340, - [1341] = 1322, + [1341] = 1341, [1342] = 1342, [1343] = 1343, [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1342, - [1348] = 1297, + [1347] = 1326, + [1348] = 1348, [1349] = 1349, - [1350] = 1300, + [1350] = 1350, [1351] = 1351, - [1352] = 1296, + [1352] = 1352, [1353] = 1353, - [1354] = 1354, - [1355] = 1308, - [1356] = 1317, - [1357] = 1299, - [1358] = 1296, - [1359] = 1353, - [1360] = 1306, - [1361] = 1329, - [1362] = 1345, - [1363] = 1295, - [1364] = 1342, - [1365] = 1322, - [1366] = 1366, + [1354] = 1325, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1322, + [1359] = 1303, + [1360] = 1320, + [1361] = 1319, + [1362] = 1342, + [1363] = 1363, + [1364] = 1305, + [1365] = 1306, + [1366] = 1304, [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 1309, - [1371] = 1311, - [1372] = 1372, - [1373] = 1368, - [1374] = 1374, - [1375] = 1327, - [1376] = 1345, - [1377] = 1351, - [1378] = 1342, - [1379] = 1330, - [1380] = 1372, - [1381] = 1322, - [1382] = 1320, - [1383] = 1340, - [1384] = 1384, - [1385] = 1314, - [1386] = 1312, - [1387] = 1304, + [1370] = 1310, + [1371] = 1355, + [1372] = 1307, + [1373] = 1314, + [1374] = 1342, + [1375] = 1351, + [1376] = 1363, + [1377] = 1334, + [1378] = 1378, + [1379] = 1311, + [1380] = 1380, + [1381] = 1367, + [1382] = 1350, + [1383] = 1309, + [1384] = 1308, + [1385] = 1327, + [1386] = 1307, + [1387] = 1306, [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1298, + [1389] = 1349, + [1390] = 1348, + [1391] = 1303, [1392] = 1392, - [1393] = 1368, - [1394] = 1293, - [1395] = 1307, - [1396] = 1369, - [1397] = 1346, - [1398] = 1344, - [1399] = 1399, + [1393] = 1327, + [1394] = 1353, + [1395] = 1319, + [1396] = 1388, + [1397] = 1388, + [1398] = 1340, + [1399] = 1341, [1400] = 1400, - [1401] = 1336, + [1401] = 1340, [1402] = 1337, - [1403] = 1403, - [1404] = 1335, - [1405] = 1333, - [1406] = 1406, - [1407] = 1324, - [1408] = 1343, - [1409] = 1409, + [1403] = 1338, + [1404] = 1341, + [1405] = 1326, + [1406] = 1309, + [1407] = 1407, + [1408] = 1326, + [1409] = 1344, [1410] = 1410, - [1411] = 1411, - [1412] = 493, - [1413] = 1413, - [1414] = 489, - [1415] = 1324, - [1416] = 1369, - [1417] = 1333, - [1418] = 1335, - [1419] = 1344, - [1420] = 1327, - [1421] = 1366, - [1422] = 1351, - [1423] = 1346, - [1424] = 1330, - [1425] = 1320, - [1426] = 1307, - [1427] = 1340, - [1428] = 1336, - [1429] = 1336, + [1411] = 1320, + [1412] = 1322, + [1413] = 1348, + [1414] = 1349, + [1415] = 1415, + [1416] = 1350, + [1417] = 1310, + [1418] = 1351, + [1419] = 1419, + [1420] = 1407, + [1421] = 1353, + [1422] = 1325, + [1423] = 1378, + [1424] = 1357, + [1425] = 1380, + [1426] = 1322, + [1427] = 1407, + [1428] = 1308, + [1429] = 1320, [1430] = 1337, - [1431] = 1298, - [1432] = 1304, - [1433] = 1433, - [1434] = 1343, - [1435] = 1435, - [1436] = 1293, - [1437] = 1384, - [1438] = 1314, - [1439] = 1312, - [1440] = 1389, - [1441] = 1441, - [1442] = 1311, - [1443] = 1309, - [1444] = 1351, - [1445] = 1295, - [1446] = 1330, - [1447] = 1329, - [1448] = 1448, - [1449] = 1340, - [1450] = 1336, - [1451] = 1336, - [1452] = 1336, - [1453] = 1312, - [1454] = 1306, - [1455] = 1314, - [1456] = 1389, - [1457] = 1435, - [1458] = 1298, - [1459] = 1384, - [1460] = 1297, - [1461] = 1389, - [1462] = 1320, - [1463] = 1441, - [1464] = 1346, - [1465] = 1344, - [1466] = 1466, - [1467] = 1300, - [1468] = 1308, - [1469] = 1294, - [1470] = 1470, + [1431] = 1338, + [1432] = 1302, + [1433] = 1319, + [1434] = 1334, + [1435] = 1344, + [1436] = 1436, + [1437] = 1363, + [1438] = 1305, + [1439] = 1357, + [1440] = 1311, + [1441] = 1378, + [1442] = 1326, + [1443] = 1304, + [1444] = 1444, + [1445] = 1378, + [1446] = 1355, + [1447] = 1380, + [1448] = 1325, + [1449] = 1314, + [1450] = 1308, + [1451] = 1337, + [1452] = 1337, + [1453] = 1337, + [1454] = 1454, + [1455] = 1455, + [1456] = 1348, + [1457] = 1349, + [1458] = 1341, + [1459] = 1459, + [1460] = 1340, + [1461] = 1311, + [1462] = 1407, + [1463] = 1463, + [1464] = 1400, + [1465] = 1465, + [1466] = 1344, + [1467] = 1350, + [1468] = 1468, + [1469] = 1351, + [1470] = 1336, [1471] = 1471, - [1472] = 1343, - [1473] = 1335, - [1474] = 1333, - [1475] = 1441, - [1476] = 1476, - [1477] = 1327, - [1478] = 1324, - [1479] = 1294, - [1480] = 1317, - [1481] = 1299, - [1482] = 1368, - [1483] = 1322, - [1484] = 1441, - [1485] = 1296, - [1486] = 1486, - [1487] = 1294, - [1488] = 1353, - [1489] = 1489, - [1490] = 1476, - [1491] = 1345, - [1492] = 1476, - [1493] = 1337, - [1494] = 1476, + [1472] = 1472, + [1473] = 1380, + [1474] = 1353, + [1475] = 1309, + [1476] = 1400, + [1477] = 1307, + [1478] = 1369, + [1479] = 1306, + [1480] = 1336, + [1481] = 501, + [1482] = 1314, + [1483] = 1342, + [1484] = 1484, + [1485] = 1400, + [1486] = 1303, + [1487] = 1487, + [1488] = 1336, + [1489] = 1327, + [1490] = 1338, + [1491] = 1471, + [1492] = 487, + [1493] = 1471, + [1494] = 1337, + [1495] = 1471, }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 + return (c < 43642 + ? (c < 4206 + ? (c < 2730 ? (c < 1994 ? (c < 910 ? (c < 736 @@ -3975,732 +3998,754 @@ static inline bool sym_identifier_character_set_1(int32_t c) { ? (c >= 2437 && c <= 2444) : c <= 2448) : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 + : (c <= 2482 || (c < 2602 + ? (c < 2544 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 + : c <= 6509) + : (c <= 6516 || (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 ? (c < 11696 ? (c >= 11688 && c <= 11694) : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 ? (c < 11736 ? (c >= 11728 && c <= 11734) : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 ? (c < 12353 ? (c >= 12344 && c <= 12348) : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 ? (c < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 ? (c < 42656 ? (c >= 42623 && c <= 42653) : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 ? (c < 42963 ? (c >= 42960 && c <= 42961) : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 ? (c < 43020 ? (c >= 43015 && c <= 43018) : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 ? (c < 43261 ? c == 43259 : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 ? (c < 43471 ? (c >= 43396 && c <= 43442) : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 ? (c < 43584 ? (c >= 43520 && c <= 43560) : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 ? (c < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 ? (c < 44032 ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43494 - ? (c < 4186 - ? (c < 2703 + return (c < 43642 + ? (c < 4206 + ? (c < 2707 ? (c < 1969 ? (c < 908 ? (c < 710 @@ -4779,735 +4824,757 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c >= 2417 && c <= 2432) : c <= 2444) : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 + : (c <= 2480 || (c < 2579 + ? (c < 2527 ? (c < 2493 ? (c < 2486 ? c == 2482 : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2674 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654) - : (c <= 2676 || (c >= 2693 && c <= 2701))))))))))) - : (c <= 2705 || (c < 3218 - ? (c < 2958 - ? (c < 2835 - ? (c < 2768 - ? (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749))) - : (c <= 2768 || (c < 2821 - ? (c < 2809 - ? (c >= 2784 && c <= 2785) - : c <= 2809) - : (c <= 2828 || (c >= 2831 && c <= 2832))))) - : (c <= 2856 || (c < 2908 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || c == 2877)) - : (c <= 2909 || (c < 2947 - ? (c < 2929 - ? (c >= 2911 && c <= 2913) - : c <= 2929) - : (c <= 2947 || (c >= 2949 && c <= 2954))))))) - : (c <= 2960 || (c < 3086 - ? (c < 2979 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c >= 2974 && c <= 2975))) - : (c <= 2980 || (c < 3024 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3024 || (c >= 3077 && c <= 3084))))) - : (c <= 3088 || (c < 3165 - ? (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3133 || (c >= 3160 && c <= 3162))) - : (c <= 3165 || (c < 3205 - ? (c < 3200 - ? (c >= 3168 && c <= 3169) - : c <= 3200) - : (c <= 3212 || (c >= 3214 && c <= 3216))))))))) - : (c <= 3240 || (c < 3634 - ? (c < 3406 - ? (c < 3313 - ? (c < 3261 - ? (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257) - : (c <= 3261 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344) - : (c <= 3386 || c == 3389)))) - : (c <= 3406 || (c < 3482 - ? (c < 3450 - ? (c < 3423 - ? (c >= 3412 && c <= 3414) - : c <= 3425) - : (c <= 3455 || (c >= 3461 && c <= 3478))) - : (c <= 3505 || (c < 3520 - ? (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517) - : (c <= 3526 || (c >= 3585 && c <= 3632))))))) - : (c <= 3634 || (c < 3776 - ? (c < 3724 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3648 && c <= 3654) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3762 - ? (c < 3751 + : (c <= 2493 || (c < 2524 + ? c == 2510 + : c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3253 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3114 + ? (c < 2990 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c < 2984 + ? (c >= 2979 && c <= 2980) + : c <= 2986))) + : (c <= 3001 || (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))))) + : (c <= 3129 || (c < 3200 + ? (c < 3165 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))) + : (c <= 3200 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) + : (c <= 3257 || (c < 3713 + ? (c < 3423 + ? (c < 3342 + ? (c < 3296 + ? (c < 3293 + ? c == 3261 + : c <= 3294) + : (c <= 3297 || (c < 3332 + ? (c >= 3313 && c <= 3314) + : c <= 3340))) + : (c <= 3344 || (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))))) + : (c <= 3425 || (c < 3517 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))) + : (c <= 3517 || (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))))))) + : (c <= 3714 || (c < 3840 + ? (c < 3762 + ? (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || (c < 3751 ? c == 3749 - : c <= 3760) - : (c <= 3762 || c == 3773)))) - : (c <= 3780 || (c < 3913 - ? (c < 3840 - ? (c < 3804 - ? c == 3782 - : c <= 3807) - : (c <= 3840 || (c >= 3904 && c <= 3911))) - : (c <= 3948 || (c < 4159 - ? (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138) - : (c <= 4159 || (c >= 4176 && c <= 4181))))))))))))) - : (c <= 4189 || (c < 8130 - ? (c < 6108 - ? (c < 4802 - ? (c < 4682 - ? (c < 4256 - ? (c < 4206 - ? (c < 4197 - ? c == 4193 - : c <= 4198) - : (c <= 4208 || (c < 4238 + : c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 ? (c >= 4213 && c <= 4225) - : c <= 4238))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 + : c <= 4238) + : (c <= 4293 || (c < 4301 ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c >= 4348 && c <= 4680))))) - : (c <= 4685 || (c < 4746 - ? (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c >= 4704 && c <= 4744))) - : (c <= 4749 || (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || c == 4800)))))) - : (c <= 4805 || (c < 5761 - ? (c < 4992 - ? (c < 4882 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))) - : (c <= 5007 || (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))))) - : (c <= 5786 || (c < 5952 - ? (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))) - : (c <= 5969 || (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)))))))) - : (c <= 6108 || (c < 7296 - ? (c < 6688 - ? (c < 6480 - ? (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c >= 6656 && c <= 6678))))) - : (c <= 6740 || (c < 7086 - ? (c < 6981 - ? (c < 6917 - ? c == 6823 - : c <= 6963) - : (c <= 6988 || (c >= 7043 && c <= 7072))) - : (c <= 7087 || (c < 7245 - ? (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))))))) - : (c <= 7304 || (c < 7968 - ? (c < 7413 - ? (c < 7401 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7404 || (c >= 7406 && c <= 7411))) - : (c <= 7414 || (c < 7680 - ? (c < 7424 - ? c == 7418 - : c <= 7615) - : (c <= 7957 || (c >= 7960 && c <= 7965))))) - : (c <= 8005 || (c < 8029 - ? (c < 8025 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 ? (c < 8016 ? (c >= 8008 && c <= 8013) : c <= 8023) - : (c <= 8025 || c == 8027)) - : (c <= 8029 || (c < 8118 + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 ? (c < 8064 ? (c >= 8031 && c <= 8061) : c <= 8116) - : (c <= 8124 || c == 8126)))))))))) - : (c <= 8132 || (c < 12321 - ? (c < 8526 - ? (c < 8455 - ? (c < 8182 - ? (c < 8150 + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 ? (c < 8144 ? (c >= 8134 && c <= 8140) : c <= 8147) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))) - : (c <= 8188 || (c < 8336 - ? (c < 8319 - ? c == 8305 - : c <= 8319) - : (c <= 8348 || c == 8450)))) - : (c <= 8455 || (c < 8486 - ? (c < 8472 + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 ? (c < 8469 ? (c >= 8458 && c <= 8467) : c <= 8469) - : (c <= 8477 || c == 8484)) - : (c <= 8486 || (c < 8508 + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 ? (c < 8490 ? c == 8488 : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))))))) - : (c <= 8526 || (c < 11648 - ? (c < 11520 - ? (c < 11499 + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 ? (c < 11264 ? (c >= 8544 && c <= 8584) : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11568 + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 ? (c < 11565 ? c == 11559 : c <= 11565) - : (c <= 11623 || c == 11631)))) - : (c <= 11670 || (c < 11712 - ? (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11736 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734) - : (c <= 11742 || (c >= 12293 && c <= 12295))))))))) - : (c <= 12329 || (c < 42786 - ? (c < 13312 - ? (c < 12540 - ? (c < 12353 - ? (c < 12344 - ? (c >= 12337 && c <= 12341) - : c <= 12348) - : (c <= 12438 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))) - : (c <= 12543 || (c < 12704 + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 ? (c < 12593 ? (c >= 12549 && c <= 12591) : c <= 12686) - : (c <= 12735 || (c >= 12784 && c <= 12799))))) - : (c <= 19903 || (c < 42538 - ? (c < 42240 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c >= 42512 && c <= 42527))) - : (c <= 42539 || (c < 42656 - ? (c < 42623 - ? (c >= 42560 && c <= 42606) - : c <= 42653) - : (c <= 42735 || (c >= 42775 && c <= 42783))))))) - : (c <= 42888 || (c < 43138 - ? (c < 42994 - ? (c < 42963 - ? (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961) - : (c <= 42963 || (c >= 42965 && c <= 42969))) - : (c <= 43009 || (c < 43020 - ? (c < 43015 - ? (c >= 43011 && c <= 43013) - : c <= 43018) - : (c <= 43042 || (c >= 43072 && c <= 43123))))) - : (c <= 43187 || (c < 43312 - ? (c < 43261 - ? (c < 43259 - ? (c >= 43250 && c <= 43255) - : c <= 43259) - : (c <= 43262 || (c >= 43274 && c <= 43301))) - : (c <= 43334 || (c < 43471 - ? (c < 43396 - ? (c >= 43360 && c <= 43388) - : c <= 43442) - : (c <= 43471 || (c >= 43488 && c <= 43492))))))))))))))) - : (c <= 43503 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43824 - ? (c < 43712 - ? (c < 43642 - ? (c < 43584 - ? (c < 43520 - ? (c >= 43514 && c <= 43518) - : c <= 43560) - : (c <= 43586 || (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638))) - : (c <= 43642 || (c < 43701 + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 ? (c < 43697 ? (c >= 43646 && c <= 43695) : c <= 43697) - : (c <= 43702 || (c >= 43705 && c <= 43709))))) - : (c <= 43712 || (c < 43777 - ? (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c >= 43762 && c <= 43764))) - : (c <= 43782 || (c < 43808 - ? (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))))))) - : (c <= 43866 || (c < 64287 - ? (c < 63744 - ? (c < 44032 - ? (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 + return (c < 43646 + ? (c < 4213 + ? (c < 2738 + ? (c < 2036 ? (c < 931 ? (c < 748 ? (c < 192 @@ -5534,788 +5601,810 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? c == 902 : c <= 906) : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 + : (c <= 1013 || (c < 1749 + ? (c < 1488 ? (c < 1329 ? (c < 1162 ? (c >= 1015 && c <= 1153) : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2610 + ? (c < 2556 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545))) + : (c <= 2556 || (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c >= 2602 && c <= 2608))))) + : (c <= 2611 || (c < 2674 + ? (c < 2649 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2652 || c == 2654)) + : (c <= 2676 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3293 + ? (c < 2972 + ? (c < 2869 + ? (c < 2821 + ? (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c < 2809 + ? (c >= 2784 && c <= 2785) + : c <= 2809))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))))) + : (c <= 2873 || (c < 2947 + ? (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)) + : (c <= 2947 || (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))))))) + : (c <= 2972 || (c < 3160 + ? (c < 3077 + ? (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3024 ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 + : c <= 3024))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || c == 3133)))) + : (c <= 3162 || (c < 3214 + ? (c < 3200 + ? (c < 3168 + ? c == 3165 + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))) + : (c <= 3216 || (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)))))))) + : (c <= 3294 || (c < 3718 + ? (c < 3461 + ? (c < 3389 + ? (c < 3332 + ? (c < 3313 ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 + : c <= 3314) + : (c <= 3340 || (c < 3346 ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 + : c <= 3386))) + : (c <= 3389 || (c < 3423 + ? (c < 3412 + ? c == 3406 + : c <= 3414) + : (c <= 3425 || (c >= 3450 && c <= 3455))))) + : (c <= 3478 || (c < 3585 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c >= 3520 && c <= 3526))) + : (c <= 3632 || (c < 3713 + ? (c < 3648 + ? c == 3634 + : c <= 3654) + : (c <= 3714 || c == 3716)))))) + : (c <= 3722 || (c < 3904 + ? (c < 3773 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)) + : (c <= 3773 || (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)))) + : (c <= 3911 || (c < 4176 + ? (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)) + : (c <= 4181 || (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) + : (c <= 4225 || (c < 8182 + ? (c < 6400 + ? (c < 4888 + ? (c < 4704 + ? (c < 4348 + ? (c < 4295 + ? (c < 4256 ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 + : c <= 4293) + : (c <= 4295 || (c < 4304 ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c >= 4698 && c <= 4701))))) + : (c <= 4744 || (c < 4800 + ? (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c >= 4882 && c <= 4885))))))) + : (c <= 4954 || (c < 5952 + ? (c < 5761 + ? (c < 5112 + ? (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109) + : (c <= 5117 || (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))))) + : (c <= 5969 || (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) + : (c <= 6430 || (c < 7413 + ? (c < 7086 + ? (c < 6688 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))) + : (c <= 6740 || (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))))) + : (c <= 7087 || (c < 7296 + ? (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))) + : (c <= 7304 || (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c >= 7406 && c <= 7411))))))) + : (c <= 7414 || (c < 8031 + ? (c < 8008 + ? (c < 7680 + ? (c < 7424 + ? c == 7418 + : c <= 7615) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 ? (c < 8025 ? (c >= 8016 && c <= 8023) : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 + : (c <= 8027 || c == 8029)))) + : (c <= 8061 || (c < 8134 + ? (c < 8126 ? (c < 8118 ? (c >= 8064 && c <= 8116) : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8160 ? (c < 8150 ? (c >= 8144 && c <= 8147) : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 + : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) + : (c <= 8188 || (c < 12549 + ? (c < 11559 + ? (c < 8488 + ? (c < 8458 + ? (c < 8336 + ? (c < 8319 + ? c == 8305 + : c <= 8319) + : (c <= 8348 || (c < 8455 + ? c == 8450 + : c <= 8455))) + : (c <= 8467 || (c < 8484 ? (c < 8472 ? c == 8469 : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 + : (c <= 8484 || c == 8486)))) + : (c <= 8488 || (c < 8544 + ? (c < 8517 ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 + : (c <= 8521 || c == 8526)) + : (c <= 8584 || (c < 11506 ? (c < 11499 ? (c >= 11264 && c <= 11492) : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 + : (c <= 11507 || (c >= 11520 && c <= 11557))))))) + : (c <= 11559 || (c < 11728 + ? (c < 11688 + ? (c < 11631 ? (c < 11568 ? c == 11565 : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 + : (c <= 11631 || (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686))) + : (c <= 11694 || (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))))) + : (c <= 11734 || (c < 12344 + ? (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))) + : (c <= 12348 || (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) + : (c <= 12591 || (c < 43015 + ? (c < 42623 + ? (c < 42192 + ? (c < 12784 ? (c < 12704 ? (c >= 12593 && c <= 12686) : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42960 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))) + : (c <= 42961 || (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))))))) + : (c <= 43018 || (c < 43396 + ? (c < 43259 + ? (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))) + : (c <= 43259 || (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))))) + : (c <= 43442 || (c < 43520 + ? (c < 43494 + ? (c < 43488 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))) + : (c <= 43560 || (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || c == 43642)))))))))))))) + : (c <= 43695 || (c < 71236 + ? (c < 67424 + ? (c < 65149 + ? (c < 64112 + ? (c < 43793 + ? (c < 43739 + ? (c < 43705 ? (c < 43701 ? c == 43697 : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 + : (c <= 43709 || (c < 43714 + ? c == 43712 + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))) + : (c <= 64217 || (c < 64467 + ? (c < 64312 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310))) + : (c <= 64316 || (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c >= 64326 && c <= 64433))))) + : (c <= 64605 || (c < 65137 + ? (c < 64914 + ? (c < 64848 + ? (c >= 64612 && c <= 64829) + : c <= 64911) + : (c <= 64967 || (c >= 65008 && c <= 65017))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || c == 65147)))))))) + : (c <= 65149 || (c < 66349 + ? (c < 65549 + ? (c < 65474 + ? (c < 65345 + ? (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))) + : (c <= 65574 || (c < 65664 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66208 + ? (c < 66176 + ? (c >= 65856 && c <= 65908) + : c <= 66204) + : (c <= 66256 || (c >= 66304 && c <= 66335))))))) + : (c <= 66378 || (c < 66928 + ? (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461) + : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 + : c <= 66517))) + : (c <= 66717 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))))) + : (c <= 66938 || (c < 66979 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c >= 66967 && c <= 66977))) + : (c <= 66993 || (c < 67072 + ? (c < 67003 ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 + : c <= 67004) + : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) + : (c <= 67431 || (c < 69635 + ? (c < 68121 + ? (c < 67712 + ? (c < 67594 + ? (c < 67506 + ? (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504) + : (c <= 67514 || (c < 67592 ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c >= 67680 && c <= 67702))))) + : (c <= 67742 || (c < 67968 + ? (c < 67840 + ? (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68112 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096) + : (c <= 68115 || (c >= 68117 && c <= 68119))))))) + : (c <= 68149 || (c < 68800 + ? (c < 68416 + ? (c < 68288 + ? (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405))) + : (c <= 68437 || (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))))) + : (c <= 68850 || (c < 69415 + ? (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))) + : (c <= 69415 || (c < 69552 + ? (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69687 || (c < 70303 + ? (c < 70081 + ? (c < 69956 + ? (c < 69763 + ? (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749) + : (c <= 69807 || (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926))) + : (c <= 69956 || (c < 70006 + ? (c < 69968 + ? c == 69959 + : c <= 70002) + : (c <= 70006 || (c >= 70019 && c <= 70066))))) + : (c <= 70084 || (c < 70207 + ? (c < 70144 + ? (c < 70108 + ? c == 70106 + : c <= 70108) + : (c <= 70161 || (c >= 70163 && c <= 70187))) + : (c <= 70208 || (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c >= 70287 && c <= 70301))))))) + : (c <= 70312 || (c < 70493 + ? (c < 70442 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70461 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70852 + ? (c < 70751 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : c <= 70730) + : (c <= 70753 || (c >= 70784 && c <= 70831))) + : (c <= 70853 || (c < 71128 + ? (c < 71040 ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 + : c <= 71086) + : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) + : (c <= 71236 || (c < 119973 + ? (c < 73728 + ? (c < 72272 + ? (c < 71960 + ? (c < 71840 + ? (c < 71424 + ? (c < 71352 + ? (c >= 71296 && c <= 71338) + : c <= 71352) + : (c <= 71450 || (c < 71680 ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 + : c <= 71723))) + : (c <= 71903 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c >= 71957 && c <= 71958))))) + : (c <= 71983 || (c < 72161 + ? (c < 72096 + ? (c < 72001 + ? c == 71999 + : c <= 72001) + : (c <= 72103 || (c >= 72106 && c <= 72144))) + : (c <= 72161 || (c < 72203 + ? (c < 72192 + ? c == 72163 + : c <= 72192) + : (c <= 72242 || c == 72250)))))) + : (c <= 72272 || (c < 73030 + ? (c < 72768 + ? (c < 72368 + ? (c < 72349 + ? (c >= 72284 && c <= 72329) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750))) + : (c <= 72768 || (c < 72968 + ? (c < 72960 + ? (c >= 72818 && c <= 72847) + : c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))) + : (c <= 73030 || (c < 73440 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73097 || c == 73112)) + : (c <= 73458 || (c < 73490 + ? (c < 73476 + ? c == 73474 + : c <= 73488) + : (c <= 73523 || c == 73648)))))))) + : (c <= 74649 || (c < 94208 + ? (c < 92928 + ? (c < 82944 + ? (c < 77712 ? (c < 74880 ? (c >= 74752 && c <= 74862) : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 + : (c <= 77808 || (c < 78913 + ? (c >= 77824 && c <= 78895) + : c <= 78918))) + : (c <= 83526 || (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 + : (c <= 92862 || (c >= 92880 && c <= 92909))))) + : (c <= 92975 || (c < 93952 + ? (c < 93053 ? (c < 93027 ? (c >= 92992 && c <= 92995) : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94176 ? (c < 94099 ? c == 94032 : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 + : (c <= 94177 || c == 94179)))))) + : (c <= 100343 || (c < 110948 + ? (c < 110589 + ? (c < 110576 ? (c < 101632 ? (c >= 100352 && c <= 101589) : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 + : (c <= 110579 || (c >= 110581 && c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2730 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') : c <= '_') : (c <= 'z' || (c < 181 ? c == 170 @@ -6387,1680 +6476,1708 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c >= 2437 && c <= 2444) : c <= 2448) : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 + : (c <= 2482 || (c < 2602 + ? (c < 2544 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 + : c <= 6509) + : (c <= 6516 || (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 ? (c < 11696 ? (c >= 11688 && c <= 11694) : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 ? (c < 11736 ? (c >= 11728 && c <= 11734) : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 ? (c < 12353 ? (c >= 12344 && c <= 12348) : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 ? (c < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 ? (c < 42656 ? (c >= 42623 && c <= 42653) : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 ? (c < 42963 ? (c >= 42960 && c <= 42961) : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 ? (c < 43020 ? (c >= 43015 && c <= 43018) : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 ? (c < 43261 ? c == 43259 : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 ? (c < 43471 ? (c >= 43396 && c <= 43442) : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 ? (c < 43584 ? (c >= 43520 && c <= 43560) : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 ? (c < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 ? (c < 44032 ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' ? (c < 'A' ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 ? (c < 43739 ? (c >= 43642 && c <= 43714) : c <= 43741) : (c <= 43759 || (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 ? (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 + : c <= 71942) + : (c <= 71945 || (c < 71957 ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 ? (c < 73728 ? c == 73648 : c <= 74649) : (c <= 74862 || (c < 77712 ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 + : c <= 113822) + : (c <= 118573 || (c < 119141 ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 + : c <= 119179) + : (c <= 119213 || (c < 119808 ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) : (c <= 124902 || (c < 124909 ? (c >= 124904 && c <= 124907) : c <= 124910))))))))) @@ -8118,13 +8235,15 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c >= 126635 && c <= 126651) : c <= 130041) : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + ? (c >= 173824 && c <= 177977) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 ? (c >= 183984 && c <= 191456) : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8222,13 +8341,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(13) END_STATE(); case 15: - if (lookahead == '\n') SKIP(17) + if (lookahead == '\n') SKIP(30) END_STATE(); case 16: - if (lookahead == '\n') SKIP(17) + if (lookahead == '\n') SKIP(30) if (lookahead == '\r') SKIP(15) END_STATE(); case 17: + if (lookahead == '\n') SKIP(19) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(19) + if (lookahead == '\r') SKIP(17) + END_STATE(); + case 19: if (lookahead == '\n') ADVANCE(86); if (lookahead == '!') ADVANCE(46); if (lookahead == '%') ADVANCE(156); @@ -8241,19 +8367,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(174); if (lookahead == '=') ADVANCE(47); if (lookahead == '>') ADVANCE(170); - if (lookahead == '\\') SKIP(16) + if (lookahead == '\\') SKIP(18) if (lookahead == '^') ADVANCE(162); if (lookahead == '|') ADVANCE(161); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(17) - END_STATE(); - case 18: - if (lookahead == '\n') SKIP(30) - END_STATE(); - case 19: - if (lookahead == '\n') SKIP(30) - if (lookahead == '\r') SKIP(18) + lookahead == ' ') SKIP(19) END_STATE(); case 20: if (lookahead == '\n') SKIP(35) @@ -8263,35 +8382,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(87); - if (lookahead == '(') ADVANCE(89); - if (lookahead == '/') ADVANCE(131); - if (lookahead == '\\') ADVANCE(129); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(128); - if (lookahead != 0) ADVANCE(132); - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(87); - if (lookahead == '/') ADVANCE(131); - if (lookahead == '\\') ADVANCE(129); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(128); - if (lookahead != 0) ADVANCE(132); - END_STATE(); - case 24: if (lookahead == '\n') SKIP(36) if (lookahead == '"') ADVANCE(237); if (lookahead == '/') ADVANCE(238); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') ADVANCE(241); if (lookahead != 0) ADVANCE(242); END_STATE(); - case 25: + case 23: if (lookahead == '\n') ADVANCE(244); if (lookahead == '\r') ADVANCE(243); if (lookahead == 'U') ADVANCE(76); @@ -8300,6 +8400,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); if (lookahead != 0) ADVANCE(243); END_STATE(); + case 24: + if (lookahead == '\n') ADVANCE(87); + if (lookahead == '(') ADVANCE(89); + if (lookahead == '/') ADVANCE(131); + if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(128); + if (lookahead != 0) ADVANCE(132); + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(87); + if (lookahead == '/') ADVANCE(131); + if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(128); + if (lookahead != 0) ADVANCE(132); + END_STATE(); case 26: if (lookahead == '\n') SKIP(44) if (lookahead == '/') ADVANCE(231); @@ -8421,7 +8540,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(213); if (lookahead == 'L') ADVANCE(257); if (lookahead == 'U') ADVANCE(258); - if (lookahead == '\\') SKIP(19) + if (lookahead == '\\') SKIP(16) if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); if (lookahead == 'u') ADVANCE(259); if (lookahead == '~') ADVANCE(141); @@ -8575,7 +8694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '"') ADVANCE(237); if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8614,7 +8733,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9831,7 +9950,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 232: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -9897,7 +10016,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 244: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\\') ADVANCE(23); END_STATE(); case 245: ACCEPT_TOKEN(sym_escape_sequence); @@ -11242,7 +11361,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [22] = {.lex_state = 83}, [23] = {.lex_state = 83}, [24] = {.lex_state = 83}, - [25] = {.lex_state = 83}, + [25] = {.lex_state = 29}, [26] = {.lex_state = 83}, [27] = {.lex_state = 83}, [28] = {.lex_state = 83}, @@ -11255,29 +11374,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 83}, [36] = {.lex_state = 29}, [37] = {.lex_state = 83}, - [38] = {.lex_state = 29}, - [39] = {.lex_state = 29}, + [38] = {.lex_state = 83}, + [39] = {.lex_state = 83}, [40] = {.lex_state = 83}, [41] = {.lex_state = 83}, - [42] = {.lex_state = 83}, + [42] = {.lex_state = 29}, [43] = {.lex_state = 28}, [44] = {.lex_state = 28}, [45] = {.lex_state = 28}, [46] = {.lex_state = 28}, [47] = {.lex_state = 28}, - [48] = {.lex_state = 83}, - [49] = {.lex_state = 83}, + [48] = {.lex_state = 29}, + [49] = {.lex_state = 29}, [50] = {.lex_state = 29}, [51] = {.lex_state = 83}, - [52] = {.lex_state = 29}, - [53] = {.lex_state = 29}, + [52] = {.lex_state = 83}, + [53] = {.lex_state = 83}, [54] = {.lex_state = 83}, [55] = {.lex_state = 83}, [56] = {.lex_state = 83}, [57] = {.lex_state = 83}, [58] = {.lex_state = 83}, - [59] = {.lex_state = 29}, - [60] = {.lex_state = 83}, + [59] = {.lex_state = 83}, + [60] = {.lex_state = 29}, [61] = {.lex_state = 29}, [62] = {.lex_state = 83}, [63] = {.lex_state = 83}, @@ -11321,7 +11440,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 28}, [102] = {.lex_state = 28}, [103] = {.lex_state = 28}, - [104] = {.lex_state = 28}, + [104] = {.lex_state = 27}, [105] = {.lex_state = 28}, [106] = {.lex_state = 28}, [107] = {.lex_state = 28}, @@ -11340,22 +11459,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 28}, [121] = {.lex_state = 28}, [122] = {.lex_state = 28}, - [123] = {.lex_state = 27}, + [123] = {.lex_state = 28}, [124] = {.lex_state = 28}, [125] = {.lex_state = 28}, - [126] = {.lex_state = 29}, - [127] = {.lex_state = 29}, - [128] = {.lex_state = 29}, + [126] = {.lex_state = 83}, + [127] = {.lex_state = 83}, + [128] = {.lex_state = 83}, [129] = {.lex_state = 83}, [130] = {.lex_state = 83}, [131] = {.lex_state = 83}, - [132] = {.lex_state = 29}, + [132] = {.lex_state = 83}, [133] = {.lex_state = 83}, [134] = {.lex_state = 83}, [135] = {.lex_state = 83}, - [136] = {.lex_state = 29}, - [137] = {.lex_state = 29}, - [138] = {.lex_state = 29}, + [136] = {.lex_state = 83}, + [137] = {.lex_state = 83}, + [138] = {.lex_state = 83}, [139] = {.lex_state = 83}, [140] = {.lex_state = 83}, [141] = {.lex_state = 83}, @@ -11364,7 +11483,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 83}, [145] = {.lex_state = 83}, [146] = {.lex_state = 83}, - [147] = {.lex_state = 29}, + [147] = {.lex_state = 83}, [148] = {.lex_state = 29}, [149] = {.lex_state = 83}, [150] = {.lex_state = 83}, @@ -11375,87 +11494,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 83}, [156] = {.lex_state = 83}, [157] = {.lex_state = 83}, - [158] = {.lex_state = 83}, - [159] = {.lex_state = 83}, + [158] = {.lex_state = 29}, + [159] = {.lex_state = 29}, [160] = {.lex_state = 83}, [161] = {.lex_state = 83}, - [162] = {.lex_state = 83}, - [163] = {.lex_state = 83}, + [162] = {.lex_state = 29}, + [163] = {.lex_state = 29}, [164] = {.lex_state = 83}, [165] = {.lex_state = 83}, - [166] = {.lex_state = 29}, + [166] = {.lex_state = 83}, [167] = {.lex_state = 83}, - [168] = {.lex_state = 83}, + [168] = {.lex_state = 29}, [169] = {.lex_state = 83}, - [170] = {.lex_state = 29}, + [170] = {.lex_state = 83}, [171] = {.lex_state = 83}, - [172] = {.lex_state = 29}, - [173] = {.lex_state = 83}, + [172] = {.lex_state = 83}, + [173] = {.lex_state = 29}, [174] = {.lex_state = 29}, - [175] = {.lex_state = 29}, + [175] = {.lex_state = 83}, [176] = {.lex_state = 83}, - [177] = {.lex_state = 29}, - [178] = {.lex_state = 29}, + [177] = {.lex_state = 83}, + [178] = {.lex_state = 83}, [179] = {.lex_state = 83}, - [180] = {.lex_state = 29}, + [180] = {.lex_state = 83}, [181] = {.lex_state = 83}, [182] = {.lex_state = 83}, [183] = {.lex_state = 83}, [184] = {.lex_state = 83}, [185] = {.lex_state = 83}, - [186] = {.lex_state = 83}, - [187] = {.lex_state = 83}, + [186] = {.lex_state = 29}, + [187] = {.lex_state = 29}, [188] = {.lex_state = 83}, [189] = {.lex_state = 83}, [190] = {.lex_state = 83}, - [191] = {.lex_state = 29}, - [192] = {.lex_state = 83}, + [191] = {.lex_state = 83}, + [192] = {.lex_state = 29}, [193] = {.lex_state = 83}, [194] = {.lex_state = 83}, - [195] = {.lex_state = 29}, - [196] = {.lex_state = 29}, + [195] = {.lex_state = 83}, + [196] = {.lex_state = 83}, [197] = {.lex_state = 83}, [198] = {.lex_state = 83}, [199] = {.lex_state = 83}, - [200] = {.lex_state = 83}, - [201] = {.lex_state = 83}, - [202] = {.lex_state = 83}, - [203] = {.lex_state = 29}, - [204] = {.lex_state = 29}, + [200] = {.lex_state = 29}, + [201] = {.lex_state = 29}, + [202] = {.lex_state = 29}, + [203] = {.lex_state = 83}, + [204] = {.lex_state = 83}, [205] = {.lex_state = 83}, [206] = {.lex_state = 83}, - [207] = {.lex_state = 29}, - [208] = {.lex_state = 29}, + [207] = {.lex_state = 83}, + [208] = {.lex_state = 83}, [209] = {.lex_state = 83}, [210] = {.lex_state = 83}, - [211] = {.lex_state = 83}, - [212] = {.lex_state = 83}, - [213] = {.lex_state = 83}, + [211] = {.lex_state = 29}, + [212] = {.lex_state = 29}, + [213] = {.lex_state = 29}, [214] = {.lex_state = 83}, - [215] = {.lex_state = 83}, + [215] = {.lex_state = 29}, [216] = {.lex_state = 29}, [217] = {.lex_state = 83}, [218] = {.lex_state = 83}, [219] = {.lex_state = 83}, [220] = {.lex_state = 83}, - [221] = {.lex_state = 29}, + [221] = {.lex_state = 83}, [222] = {.lex_state = 83}, [223] = {.lex_state = 83}, [224] = {.lex_state = 83}, [225] = {.lex_state = 83}, [226] = {.lex_state = 83}, - [227] = {.lex_state = 29}, + [227] = {.lex_state = 83}, [228] = {.lex_state = 83}, [229] = {.lex_state = 83}, - [230] = {.lex_state = 29}, + [230] = {.lex_state = 83}, [231] = {.lex_state = 83}, [232] = {.lex_state = 83}, - [233] = {.lex_state = 29}, + [233] = {.lex_state = 83}, [234] = {.lex_state = 83}, [235] = {.lex_state = 83}, [236] = {.lex_state = 83}, - [237] = {.lex_state = 29}, - [238] = {.lex_state = 29}, + [237] = {.lex_state = 83}, + [238] = {.lex_state = 83}, [239] = {.lex_state = 83}, [240] = {.lex_state = 83}, [241] = {.lex_state = 83}, @@ -11465,98 +11584,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [245] = {.lex_state = 83}, [246] = {.lex_state = 83}, [247] = {.lex_state = 83}, - [248] = {.lex_state = 83}, + [248] = {.lex_state = 29}, [249] = {.lex_state = 83}, - [250] = {.lex_state = 83}, + [250] = {.lex_state = 29}, [251] = {.lex_state = 83}, [252] = {.lex_state = 83}, [253] = {.lex_state = 83}, [254] = {.lex_state = 83}, [255] = {.lex_state = 83}, - [256] = {.lex_state = 83}, + [256] = {.lex_state = 29}, [257] = {.lex_state = 83}, [258] = {.lex_state = 83}, [259] = {.lex_state = 83}, - [260] = {.lex_state = 83}, - [261] = {.lex_state = 83}, - [262] = {.lex_state = 83}, - [263] = {.lex_state = 83}, + [260] = {.lex_state = 29}, + [261] = {.lex_state = 29}, + [262] = {.lex_state = 29}, + [263] = {.lex_state = 29}, [264] = {.lex_state = 83}, - [265] = {.lex_state = 83}, + [265] = {.lex_state = 29}, [266] = {.lex_state = 83}, [267] = {.lex_state = 83}, [268] = {.lex_state = 83}, [269] = {.lex_state = 83}, [270] = {.lex_state = 83}, [271] = {.lex_state = 83}, - [272] = {.lex_state = 83}, + [272] = {.lex_state = 29}, [273] = {.lex_state = 83}, [274] = {.lex_state = 83}, [275] = {.lex_state = 83}, - [276] = {.lex_state = 83}, + [276] = {.lex_state = 29}, [277] = {.lex_state = 83}, [278] = {.lex_state = 83}, [279] = {.lex_state = 83}, [280] = {.lex_state = 83}, - [281] = {.lex_state = 83}, + [281] = {.lex_state = 29}, [282] = {.lex_state = 83}, - [283] = {.lex_state = 29}, - [284] = {.lex_state = 83}, + [283] = {.lex_state = 83}, + [284] = {.lex_state = 29}, [285] = {.lex_state = 83}, [286] = {.lex_state = 83}, [287] = {.lex_state = 83}, - [288] = {.lex_state = 29}, + [288] = {.lex_state = 83}, [289] = {.lex_state = 83}, [290] = {.lex_state = 83}, [291] = {.lex_state = 83}, [292] = {.lex_state = 29}, [293] = {.lex_state = 83}, - [294] = {.lex_state = 83}, + [294] = {.lex_state = 29}, [295] = {.lex_state = 83}, - [296] = {.lex_state = 29}, + [296] = {.lex_state = 83}, [297] = {.lex_state = 83}, [298] = {.lex_state = 83}, [299] = {.lex_state = 83}, - [300] = {.lex_state = 29}, + [300] = {.lex_state = 83}, [301] = {.lex_state = 83}, - [302] = {.lex_state = 83}, - [303] = {.lex_state = 83}, + [302] = {.lex_state = 29}, + [303] = {.lex_state = 29}, [304] = {.lex_state = 83}, [305] = {.lex_state = 83}, [306] = {.lex_state = 83}, - [307] = {.lex_state = 83}, + [307] = {.lex_state = 29}, [308] = {.lex_state = 83}, [309] = {.lex_state = 83}, [310] = {.lex_state = 29}, [311] = {.lex_state = 83}, - [312] = {.lex_state = 83}, - [313] = {.lex_state = 29}, + [312] = {.lex_state = 29}, + [313] = {.lex_state = 83}, [314] = {.lex_state = 83}, [315] = {.lex_state = 83}, [316] = {.lex_state = 83}, - [317] = {.lex_state = 83}, + [317] = {.lex_state = 29}, [318] = {.lex_state = 83}, [319] = {.lex_state = 83}, [320] = {.lex_state = 83}, [321] = {.lex_state = 83}, [322] = {.lex_state = 83}, - [323] = {.lex_state = 83}, - [324] = {.lex_state = 83}, - [325] = {.lex_state = 83}, - [326] = {.lex_state = 83}, + [323] = {.lex_state = 29}, + [324] = {.lex_state = 29}, + [325] = {.lex_state = 29}, + [326] = {.lex_state = 29}, [327] = {.lex_state = 83}, - [328] = {.lex_state = 83}, - [329] = {.lex_state = 83}, - [330] = {.lex_state = 29}, - [331] = {.lex_state = 29}, + [328] = {.lex_state = 29}, + [329] = {.lex_state = 29}, + [330] = {.lex_state = 83}, + [331] = {.lex_state = 83}, [332] = {.lex_state = 83}, [333] = {.lex_state = 83}, - [334] = {.lex_state = 83}, + [334] = {.lex_state = 29}, [335] = {.lex_state = 83}, - [336] = {.lex_state = 29}, - [337] = {.lex_state = 83}, + [336] = {.lex_state = 83}, + [337] = {.lex_state = 29}, [338] = {.lex_state = 83}, - [339] = {.lex_state = 83}, + [339] = {.lex_state = 29}, [340] = {.lex_state = 83}, [341] = {.lex_state = 83}, [342] = {.lex_state = 83}, @@ -11571,25 +11690,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 83}, [352] = {.lex_state = 83}, [353] = {.lex_state = 29}, - [354] = {.lex_state = 29}, - [355] = {.lex_state = 83}, + [354] = {.lex_state = 83}, + [355] = {.lex_state = 29}, [356] = {.lex_state = 29}, - [357] = {.lex_state = 29}, - [358] = {.lex_state = 29}, + [357] = {.lex_state = 83}, + [358] = {.lex_state = 83}, [359] = {.lex_state = 83}, [360] = {.lex_state = 29}, [361] = {.lex_state = 29}, - [362] = {.lex_state = 29}, + [362] = {.lex_state = 83}, [363] = {.lex_state = 83}, - [364] = {.lex_state = 29}, - [365] = {.lex_state = 29}, + [364] = {.lex_state = 83}, + [365] = {.lex_state = 83}, [366] = {.lex_state = 29}, - [367] = {.lex_state = 29}, - [368] = {.lex_state = 29}, + [367] = {.lex_state = 83}, + [368] = {.lex_state = 83}, [369] = {.lex_state = 29}, [370] = {.lex_state = 83}, - [371] = {.lex_state = 83}, - [372] = {.lex_state = 29}, + [371] = {.lex_state = 29}, + [372] = {.lex_state = 83}, [373] = {.lex_state = 83}, [374] = {.lex_state = 83}, [375] = {.lex_state = 83}, @@ -11619,42 +11738,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 33}, [400] = {.lex_state = 33}, [401] = {.lex_state = 33}, - [402] = {.lex_state = 34}, + [402] = {.lex_state = 83}, [403] = {.lex_state = 83}, [404] = {.lex_state = 83}, - [405] = {.lex_state = 83}, - [406] = {.lex_state = 34}, + [405] = {.lex_state = 34}, + [406] = {.lex_state = 83}, [407] = {.lex_state = 83}, - [408] = {.lex_state = 83}, + [408] = {.lex_state = 34}, [409] = {.lex_state = 34}, [410] = {.lex_state = 34}, [411] = {.lex_state = 83}, - [412] = {.lex_state = 83}, + [412] = {.lex_state = 34}, [413] = {.lex_state = 83}, - [414] = {.lex_state = 34}, + [414] = {.lex_state = 83}, [415] = {.lex_state = 83}, - [416] = {.lex_state = 83}, + [416] = {.lex_state = 34}, [417] = {.lex_state = 34}, - [418] = {.lex_state = 34}, - [419] = {.lex_state = 83}, + [418] = {.lex_state = 83}, + [419] = {.lex_state = 34}, [420] = {.lex_state = 83}, - [421] = {.lex_state = 34}, - [422] = {.lex_state = 34}, - [423] = {.lex_state = 83}, + [421] = {.lex_state = 83}, + [422] = {.lex_state = 83}, + [423] = {.lex_state = 34}, [424] = {.lex_state = 33}, [425] = {.lex_state = 34}, - [426] = {.lex_state = 32}, - [427] = {.lex_state = 34}, + [426] = {.lex_state = 34}, + [427] = {.lex_state = 32}, [428] = {.lex_state = 32}, - [429] = {.lex_state = 34}, - [430] = {.lex_state = 32}, + [429] = {.lex_state = 32}, + [430] = {.lex_state = 34}, [431] = {.lex_state = 33}, [432] = {.lex_state = 31}, [433] = {.lex_state = 33}, [434] = {.lex_state = 31}, [435] = {.lex_state = 33}, - [436] = {.lex_state = 31}, - [437] = {.lex_state = 33}, + [436] = {.lex_state = 33}, + [437] = {.lex_state = 31}, [438] = {.lex_state = 33}, [439] = {.lex_state = 83}, [440] = {.lex_state = 83}, @@ -11704,13 +11823,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 83}, [485] = {.lex_state = 83}, [486] = {.lex_state = 83}, - [487] = {.lex_state = 83}, + [487] = {.lex_state = 31}, [488] = {.lex_state = 83}, - [489] = {.lex_state = 31}, + [489] = {.lex_state = 83}, [490] = {.lex_state = 83}, [491] = {.lex_state = 83}, [492] = {.lex_state = 83}, - [493] = {.lex_state = 31}, + [493] = {.lex_state = 83}, [494] = {.lex_state = 83}, [495] = {.lex_state = 83}, [496] = {.lex_state = 83}, @@ -11718,7 +11837,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 83}, [499] = {.lex_state = 83}, [500] = {.lex_state = 83}, - [501] = {.lex_state = 83}, + [501] = {.lex_state = 31}, [502] = {.lex_state = 83}, [503] = {.lex_state = 83}, [504] = {.lex_state = 83}, @@ -11801,7 +11920,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 83}, [582] = {.lex_state = 34}, [583] = {.lex_state = 34}, - [584] = {.lex_state = 32}, + [584] = {.lex_state = 34}, [585] = {.lex_state = 34}, [586] = {.lex_state = 32}, [587] = {.lex_state = 34}, @@ -11820,7 +11939,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 34}, [601] = {.lex_state = 34}, [602] = {.lex_state = 34}, - [603] = {.lex_state = 32}, + [603] = {.lex_state = 34}, [604] = {.lex_state = 34}, [605] = {.lex_state = 34}, [606] = {.lex_state = 34}, @@ -11833,44 +11952,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 34}, [614] = {.lex_state = 34}, [615] = {.lex_state = 34}, - [616] = {.lex_state = 34}, + [616] = {.lex_state = 32}, [617] = {.lex_state = 34}, [618] = {.lex_state = 34}, - [619] = {.lex_state = 34}, - [620] = {.lex_state = 33}, - [621] = {.lex_state = 33}, + [619] = {.lex_state = 33}, + [620] = {.lex_state = 32}, + [621] = {.lex_state = 83}, [622] = {.lex_state = 83}, [623] = {.lex_state = 83}, - [624] = {.lex_state = 34}, - [625] = {.lex_state = 83}, + [624] = {.lex_state = 33}, + [625] = {.lex_state = 34}, [626] = {.lex_state = 34}, [627] = {.lex_state = 34}, [628] = {.lex_state = 34}, [629] = {.lex_state = 34}, [630] = {.lex_state = 34}, - [631] = {.lex_state = 33}, - [632] = {.lex_state = 34}, - [633] = {.lex_state = 34}, - [634] = {.lex_state = 34}, + [631] = {.lex_state = 34}, + [632] = {.lex_state = 33}, + [633] = {.lex_state = 33}, + [634] = {.lex_state = 33}, [635] = {.lex_state = 34}, [636] = {.lex_state = 34}, [637] = {.lex_state = 34}, [638] = {.lex_state = 34}, [639] = {.lex_state = 34}, - [640] = {.lex_state = 33}, + [640] = {.lex_state = 34}, [641] = {.lex_state = 34}, - [642] = {.lex_state = 34}, + [642] = {.lex_state = 33}, [643] = {.lex_state = 34}, - [644] = {.lex_state = 33}, + [644] = {.lex_state = 34}, [645] = {.lex_state = 34}, [646] = {.lex_state = 34}, [647] = {.lex_state = 34}, [648] = {.lex_state = 34}, - [649] = {.lex_state = 33}, + [649] = {.lex_state = 34}, [650] = {.lex_state = 34}, [651] = {.lex_state = 34}, - [652] = {.lex_state = 33}, - [653] = {.lex_state = 34}, + [652] = {.lex_state = 34}, + [653] = {.lex_state = 33}, [654] = {.lex_state = 33}, [655] = {.lex_state = 34}, [656] = {.lex_state = 34}, @@ -11881,7 +12000,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [661] = {.lex_state = 33}, [662] = {.lex_state = 33}, [663] = {.lex_state = 33}, - [664] = {.lex_state = 34}, + [664] = {.lex_state = 33}, [665] = {.lex_state = 33}, [666] = {.lex_state = 33}, [667] = {.lex_state = 33}, @@ -11889,28 +12008,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 33}, [670] = {.lex_state = 33}, [671] = {.lex_state = 33}, - [672] = {.lex_state = 34}, + [672] = {.lex_state = 33}, [673] = {.lex_state = 33}, [674] = {.lex_state = 33}, [675] = {.lex_state = 33}, - [676] = {.lex_state = 34}, + [676] = {.lex_state = 33}, [677] = {.lex_state = 34}, - [678] = {.lex_state = 34}, - [679] = {.lex_state = 34}, + [678] = {.lex_state = 33}, + [679] = {.lex_state = 33}, [680] = {.lex_state = 34}, - [681] = {.lex_state = 34}, - [682] = {.lex_state = 33}, - [683] = {.lex_state = 34}, + [681] = {.lex_state = 33}, + [682] = {.lex_state = 34}, + [683] = {.lex_state = 33}, [684] = {.lex_state = 34}, - [685] = {.lex_state = 33}, - [686] = {.lex_state = 34}, - [687] = {.lex_state = 33}, + [685] = {.lex_state = 34}, + [686] = {.lex_state = 33}, + [687] = {.lex_state = 34}, [688] = {.lex_state = 34}, - [689] = {.lex_state = 33}, - [690] = {.lex_state = 33}, - [691] = {.lex_state = 33}, - [692] = {.lex_state = 33}, - [693] = {.lex_state = 33}, + [689] = {.lex_state = 34}, + [690] = {.lex_state = 34}, + [691] = {.lex_state = 34}, + [692] = {.lex_state = 34}, + [693] = {.lex_state = 34}, [694] = {.lex_state = 34}, [695] = {.lex_state = 33}, [696] = {.lex_state = 33}, @@ -11918,62 +12037,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [698] = {.lex_state = 33}, [699] = {.lex_state = 33}, [700] = {.lex_state = 33}, - [701] = {.lex_state = 33}, - [702] = {.lex_state = 33}, - [703] = {.lex_state = 33}, - [704] = {.lex_state = 33}, - [705] = {.lex_state = 33}, + [701] = {.lex_state = 32}, + [702] = {.lex_state = 31}, + [703] = {.lex_state = 34}, + [704] = {.lex_state = 31}, + [705] = {.lex_state = 34}, [706] = {.lex_state = 32}, - [707] = {.lex_state = 32}, - [708] = {.lex_state = 34}, - [709] = {.lex_state = 32}, - [710] = {.lex_state = 32}, + [707] = {.lex_state = 34}, + [708] = {.lex_state = 33}, + [709] = {.lex_state = 33}, + [710] = {.lex_state = 34}, [711] = {.lex_state = 34}, - [712] = {.lex_state = 32}, + [712] = {.lex_state = 34}, [713] = {.lex_state = 34}, [714] = {.lex_state = 32}, [715] = {.lex_state = 32}, [716] = {.lex_state = 34}, - [717] = {.lex_state = 34}, - [718] = {.lex_state = 34}, + [717] = {.lex_state = 32}, + [718] = {.lex_state = 32}, [719] = {.lex_state = 34}, - [720] = {.lex_state = 34}, + [720] = {.lex_state = 32}, [721] = {.lex_state = 34}, - [722] = {.lex_state = 32}, - [723] = {.lex_state = 33}, - [724] = {.lex_state = 32}, - [725] = {.lex_state = 32}, + [722] = {.lex_state = 34}, + [723] = {.lex_state = 34}, + [724] = {.lex_state = 33}, + [725] = {.lex_state = 34}, [726] = {.lex_state = 34}, - [727] = {.lex_state = 34}, + [727] = {.lex_state = 32}, [728] = {.lex_state = 34}, [729] = {.lex_state = 34}, - [730] = {.lex_state = 34}, - [731] = {.lex_state = 34}, - [732] = {.lex_state = 31}, + [730] = {.lex_state = 32}, + [731] = {.lex_state = 32}, + [732] = {.lex_state = 32}, [733] = {.lex_state = 34}, [734] = {.lex_state = 32}, - [735] = {.lex_state = 34}, - [736] = {.lex_state = 31}, - [737] = {.lex_state = 31}, - [738] = {.lex_state = 32}, - [739] = {.lex_state = 32}, + [735] = {.lex_state = 32}, + [736] = {.lex_state = 34}, + [737] = {.lex_state = 33}, + [738] = {.lex_state = 34}, + [739] = {.lex_state = 33}, [740] = {.lex_state = 32}, [741] = {.lex_state = 32}, [742] = {.lex_state = 32}, - [743] = {.lex_state = 34}, - [744] = {.lex_state = 31}, - [745] = {.lex_state = 32}, + [743] = {.lex_state = 31}, + [744] = {.lex_state = 32}, + [745] = {.lex_state = 34}, [746] = {.lex_state = 34}, - [747] = {.lex_state = 34}, + [747] = {.lex_state = 31}, [748] = {.lex_state = 32}, - [749] = {.lex_state = 33}, + [749] = {.lex_state = 34}, [750] = {.lex_state = 32}, [751] = {.lex_state = 34}, [752] = {.lex_state = 34}, [753] = {.lex_state = 34}, [754] = {.lex_state = 34}, [755] = {.lex_state = 34}, - [756] = {.lex_state = 32}, + [756] = {.lex_state = 34}, [757] = {.lex_state = 34}, [758] = {.lex_state = 34}, [759] = {.lex_state = 34}, @@ -11989,7 +12108,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [769] = {.lex_state = 34}, [770] = {.lex_state = 34}, [771] = {.lex_state = 34}, - [772] = {.lex_state = 34}, + [772] = {.lex_state = 33}, [773] = {.lex_state = 34}, [774] = {.lex_state = 34}, [775] = {.lex_state = 34}, @@ -11997,7 +12116,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 34}, [778] = {.lex_state = 34}, [779] = {.lex_state = 34}, - [780] = {.lex_state = 34}, + [780] = {.lex_state = 33}, [781] = {.lex_state = 34}, [782] = {.lex_state = 34}, [783] = {.lex_state = 34}, @@ -12021,7 +12140,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [801] = {.lex_state = 34}, [802] = {.lex_state = 34}, [803] = {.lex_state = 34}, - [804] = {.lex_state = 33}, + [804] = {.lex_state = 34}, [805] = {.lex_state = 34}, [806] = {.lex_state = 34}, [807] = {.lex_state = 34}, @@ -12031,53 +12150,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [811] = {.lex_state = 34}, [812] = {.lex_state = 34}, [813] = {.lex_state = 34}, - [814] = {.lex_state = 34}, + [814] = {.lex_state = 33}, [815] = {.lex_state = 34}, [816] = {.lex_state = 34}, [817] = {.lex_state = 34}, - [818] = {.lex_state = 33}, + [818] = {.lex_state = 34}, [819] = {.lex_state = 34}, [820] = {.lex_state = 34}, - [821] = {.lex_state = 34}, - [822] = {.lex_state = 34}, + [821] = {.lex_state = 33}, + [822] = {.lex_state = 33}, [823] = {.lex_state = 34}, [824] = {.lex_state = 34}, [825] = {.lex_state = 34}, [826] = {.lex_state = 34}, [827] = {.lex_state = 34}, - [828] = {.lex_state = 34}, + [828] = {.lex_state = 33}, [829] = {.lex_state = 34}, - [830] = {.lex_state = 34}, - [831] = {.lex_state = 33}, - [832] = {.lex_state = 34}, + [830] = {.lex_state = 33}, + [831] = {.lex_state = 34}, + [832] = {.lex_state = 33}, [833] = {.lex_state = 33}, - [834] = {.lex_state = 33}, + [834] = {.lex_state = 34}, [835] = {.lex_state = 34}, - [836] = {.lex_state = 34}, - [837] = {.lex_state = 33}, + [836] = {.lex_state = 33}, + [837] = {.lex_state = 34}, [838] = {.lex_state = 34}, [839] = {.lex_state = 34}, - [840] = {.lex_state = 33}, + [840] = {.lex_state = 34}, [841] = {.lex_state = 34}, [842] = {.lex_state = 34}, - [843] = {.lex_state = 33}, - [844] = {.lex_state = 34}, - [845] = {.lex_state = 34}, + [843] = {.lex_state = 34}, + [844] = {.lex_state = 33}, + [845] = {.lex_state = 33}, [846] = {.lex_state = 34}, [847] = {.lex_state = 34}, [848] = {.lex_state = 34}, [849] = {.lex_state = 33}, [850] = {.lex_state = 34}, - [851] = {.lex_state = 33}, - [852] = {.lex_state = 33}, + [851] = {.lex_state = 34}, + [852] = {.lex_state = 34}, [853] = {.lex_state = 34}, [854] = {.lex_state = 34}, - [855] = {.lex_state = 33}, - [856] = {.lex_state = 34}, + [855] = {.lex_state = 34}, + [856] = {.lex_state = 33}, [857] = {.lex_state = 34}, - [858] = {.lex_state = 34}, + [858] = {.lex_state = 33}, [859] = {.lex_state = 33}, - [860] = {.lex_state = 34}, + [860] = {.lex_state = 33}, [861] = {.lex_state = 33}, [862] = {.lex_state = 33}, [863] = {.lex_state = 33}, @@ -12125,37 +12244,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 33}, [906] = {.lex_state = 33}, [907] = {.lex_state = 33}, - [908] = {.lex_state = 33}, - [909] = {.lex_state = 33}, - [910] = {.lex_state = 17}, - [911] = {.lex_state = 30}, - [912] = {.lex_state = 30}, - [913] = {.lex_state = 30}, + [908] = {.lex_state = 30}, + [909] = {.lex_state = 30}, + [910] = {.lex_state = 33}, + [911] = {.lex_state = 19}, + [912] = {.lex_state = 33}, + [913] = {.lex_state = 33}, [914] = {.lex_state = 30}, [915] = {.lex_state = 33}, [916] = {.lex_state = 33}, [917] = {.lex_state = 33}, [918] = {.lex_state = 33}, - [919] = {.lex_state = 33}, - [920] = {.lex_state = 33}, + [919] = {.lex_state = 30}, + [920] = {.lex_state = 30}, [921] = {.lex_state = 33}, [922] = {.lex_state = 33}, - [923] = {.lex_state = 30}, + [923] = {.lex_state = 33}, [924] = {.lex_state = 33}, [925] = {.lex_state = 33}, - [926] = {.lex_state = 30}, + [926] = {.lex_state = 33}, [927] = {.lex_state = 33}, - [928] = {.lex_state = 30}, + [928] = {.lex_state = 33}, [929] = {.lex_state = 33}, - [930] = {.lex_state = 30}, - [931] = {.lex_state = 30}, + [930] = {.lex_state = 33}, + [931] = {.lex_state = 33}, [932] = {.lex_state = 30}, - [933] = {.lex_state = 30}, + [933] = {.lex_state = 33}, [934] = {.lex_state = 30}, [935] = {.lex_state = 30}, [936] = {.lex_state = 30}, [937] = {.lex_state = 30}, - [938] = {.lex_state = 33}, + [938] = {.lex_state = 30}, [939] = {.lex_state = 30}, [940] = {.lex_state = 30}, [941] = {.lex_state = 30}, @@ -12163,11 +12282,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 30}, [944] = {.lex_state = 33}, [945] = {.lex_state = 33}, - [946] = {.lex_state = 30}, + [946] = {.lex_state = 33}, [947] = {.lex_state = 30}, - [948] = {.lex_state = 30}, - [949] = {.lex_state = 30}, - [950] = {.lex_state = 33}, + [948] = {.lex_state = 33}, + [949] = {.lex_state = 33}, + [950] = {.lex_state = 30}, [951] = {.lex_state = 30}, [952] = {.lex_state = 30}, [953] = {.lex_state = 30}, @@ -12175,141 +12294,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [955] = {.lex_state = 30}, [956] = {.lex_state = 30}, [957] = {.lex_state = 30}, - [958] = {.lex_state = 33}, - [959] = {.lex_state = 33}, - [960] = {.lex_state = 30}, + [958] = {.lex_state = 30}, + [959] = {.lex_state = 30}, + [960] = {.lex_state = 33}, [961] = {.lex_state = 33}, [962] = {.lex_state = 33}, [963] = {.lex_state = 33}, - [964] = {.lex_state = 33}, - [965] = {.lex_state = 33}, + [964] = {.lex_state = 30}, + [965] = {.lex_state = 30}, [966] = {.lex_state = 33}, - [967] = {.lex_state = 33}, + [967] = {.lex_state = 30}, [968] = {.lex_state = 30}, [969] = {.lex_state = 30}, [970] = {.lex_state = 30}, [971] = {.lex_state = 30}, - [972] = {.lex_state = 33}, - [973] = {.lex_state = 33}, - [974] = {.lex_state = 33}, - [975] = {.lex_state = 17}, - [976] = {.lex_state = 33}, - [977] = {.lex_state = 17}, - [978] = {.lex_state = 17}, - [979] = {.lex_state = 17}, - [980] = {.lex_state = 17}, - [981] = {.lex_state = 17}, - [982] = {.lex_state = 33}, - [983] = {.lex_state = 33}, - [984] = {.lex_state = 33}, + [972] = {.lex_state = 30}, + [973] = {.lex_state = 30}, + [974] = {.lex_state = 19}, + [975] = {.lex_state = 19}, + [976] = {.lex_state = 19}, + [977] = {.lex_state = 19}, + [978] = {.lex_state = 19}, + [979] = {.lex_state = 19}, + [980] = {.lex_state = 19}, + [981] = {.lex_state = 19}, + [982] = {.lex_state = 19}, + [983] = {.lex_state = 19}, + [984] = {.lex_state = 19}, [985] = {.lex_state = 33}, [986] = {.lex_state = 33}, [987] = {.lex_state = 33}, - [988] = {.lex_state = 17}, - [989] = {.lex_state = 17}, - [990] = {.lex_state = 17}, - [991] = {.lex_state = 17}, - [992] = {.lex_state = 17}, - [993] = {.lex_state = 17}, - [994] = {.lex_state = 17}, - [995] = {.lex_state = 17}, - [996] = {.lex_state = 33}, - [997] = {.lex_state = 17}, - [998] = {.lex_state = 17}, - [999] = {.lex_state = 17}, - [1000] = {.lex_state = 17}, - [1001] = {.lex_state = 17}, - [1002] = {.lex_state = 17}, - [1003] = {.lex_state = 33}, - [1004] = {.lex_state = 17}, - [1005] = {.lex_state = 17}, - [1006] = {.lex_state = 17}, - [1007] = {.lex_state = 17}, + [988] = {.lex_state = 19}, + [989] = {.lex_state = 19}, + [990] = {.lex_state = 19}, + [991] = {.lex_state = 19}, + [992] = {.lex_state = 19}, + [993] = {.lex_state = 33}, + [994] = {.lex_state = 33}, + [995] = {.lex_state = 19}, + [996] = {.lex_state = 19}, + [997] = {.lex_state = 33}, + [998] = {.lex_state = 33}, + [999] = {.lex_state = 19}, + [1000] = {.lex_state = 33}, + [1001] = {.lex_state = 33}, + [1002] = {.lex_state = 33}, + [1003] = {.lex_state = 19}, + [1004] = {.lex_state = 19}, + [1005] = {.lex_state = 19}, + [1006] = {.lex_state = 19}, + [1007] = {.lex_state = 19}, [1008] = {.lex_state = 33}, - [1009] = {.lex_state = 17}, - [1010] = {.lex_state = 33}, - [1011] = {.lex_state = 17}, - [1012] = {.lex_state = 17}, - [1013] = {.lex_state = 17}, + [1009] = {.lex_state = 19}, + [1010] = {.lex_state = 19}, + [1011] = {.lex_state = 19}, + [1012] = {.lex_state = 19}, + [1013] = {.lex_state = 33}, [1014] = {.lex_state = 33}, [1015] = {.lex_state = 33}, [1016] = {.lex_state = 33}, [1017] = {.lex_state = 33}, - [1018] = {.lex_state = 33}, + [1018] = {.lex_state = 83}, [1019] = {.lex_state = 33}, [1020] = {.lex_state = 33}, - [1021] = {.lex_state = 83}, - [1022] = {.lex_state = 33}, + [1021] = {.lex_state = 33}, + [1022] = {.lex_state = 83}, [1023] = {.lex_state = 33}, [1024] = {.lex_state = 33}, - [1025] = {.lex_state = 83}, + [1025] = {.lex_state = 33}, [1026] = {.lex_state = 33}, [1027] = {.lex_state = 33}, - [1028] = {.lex_state = 83}, - [1029] = {.lex_state = 33}, + [1028] = {.lex_state = 33}, + [1029] = {.lex_state = 83}, [1030] = {.lex_state = 33}, - [1031] = {.lex_state = 33}, - [1032] = {.lex_state = 83}, + [1031] = {.lex_state = 83}, + [1032] = {.lex_state = 33}, [1033] = {.lex_state = 33}, [1034] = {.lex_state = 33}, [1035] = {.lex_state = 33}, - [1036] = {.lex_state = 33}, + [1036] = {.lex_state = 83}, [1037] = {.lex_state = 33}, - [1038] = {.lex_state = 83}, - [1039] = {.lex_state = 33}, + [1038] = {.lex_state = 33}, + [1039] = {.lex_state = 83}, [1040] = {.lex_state = 33}, [1041] = {.lex_state = 33}, - [1042] = {.lex_state = 33}, - [1043] = {.lex_state = 83}, - [1044] = {.lex_state = 83}, + [1042] = {.lex_state = 83}, + [1043] = {.lex_state = 33}, + [1044] = {.lex_state = 33}, [1045] = {.lex_state = 83}, [1046] = {.lex_state = 33}, [1047] = {.lex_state = 33}, - [1048] = {.lex_state = 83}, - [1049] = {.lex_state = 33}, + [1048] = {.lex_state = 33}, + [1049] = {.lex_state = 83}, [1050] = {.lex_state = 33}, [1051] = {.lex_state = 33}, [1052] = {.lex_state = 33}, - [1053] = {.lex_state = 83}, + [1053] = {.lex_state = 33}, [1054] = {.lex_state = 33}, - [1055] = {.lex_state = 83}, - [1056] = {.lex_state = 33}, + [1055] = {.lex_state = 33}, + [1056] = {.lex_state = 83}, [1057] = {.lex_state = 33}, - [1058] = {.lex_state = 83}, + [1058] = {.lex_state = 33}, [1059] = {.lex_state = 33}, - [1060] = {.lex_state = 33}, + [1060] = {.lex_state = 83}, [1061] = {.lex_state = 83}, - [1062] = {.lex_state = 33}, - [1063] = {.lex_state = 33}, + [1062] = {.lex_state = 83}, + [1063] = {.lex_state = 83}, [1064] = {.lex_state = 83}, - [1065] = {.lex_state = 83}, + [1065] = {.lex_state = 33}, [1066] = {.lex_state = 83}, [1067] = {.lex_state = 83}, - [1068] = {.lex_state = 33}, - [1069] = {.lex_state = 83}, + [1068] = {.lex_state = 83}, + [1069] = {.lex_state = 33}, [1070] = {.lex_state = 83}, [1071] = {.lex_state = 83}, - [1072] = {.lex_state = 83}, + [1072] = {.lex_state = 33}, [1073] = {.lex_state = 83}, - [1074] = {.lex_state = 35}, + [1074] = {.lex_state = 83}, [1075] = {.lex_state = 83}, [1076] = {.lex_state = 83}, [1077] = {.lex_state = 83}, [1078] = {.lex_state = 83}, [1079] = {.lex_state = 83}, - [1080] = {.lex_state = 35}, + [1080] = {.lex_state = 83}, [1081] = {.lex_state = 83}, - [1082] = {.lex_state = 35}, + [1082] = {.lex_state = 83}, [1083] = {.lex_state = 83}, [1084] = {.lex_state = 83}, - [1085] = {.lex_state = 83}, + [1085] = {.lex_state = 35}, [1086] = {.lex_state = 83}, [1087] = {.lex_state = 83}, - [1088] = {.lex_state = 35}, - [1089] = {.lex_state = 83}, - [1090] = {.lex_state = 83}, + [1088] = {.lex_state = 83}, + [1089] = {.lex_state = 35}, + [1090] = {.lex_state = 35}, [1091] = {.lex_state = 83}, - [1092] = {.lex_state = 83}, + [1092] = {.lex_state = 35}, [1093] = {.lex_state = 83}, [1094] = {.lex_state = 83}, [1095] = {.lex_state = 83}, @@ -12353,59 +12472,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1133] = {.lex_state = 83}, [1134] = {.lex_state = 83}, [1135] = {.lex_state = 83}, - [1136] = {.lex_state = 28}, - [1137] = {.lex_state = 83}, + [1136] = {.lex_state = 83}, + [1137] = {.lex_state = 33}, [1138] = {.lex_state = 83}, [1139] = {.lex_state = 83}, [1140] = {.lex_state = 83}, [1141] = {.lex_state = 83}, - [1142] = {.lex_state = 83}, + [1142] = {.lex_state = 33}, [1143] = {.lex_state = 83}, - [1144] = {.lex_state = 33}, + [1144] = {.lex_state = 83}, [1145] = {.lex_state = 83}, - [1146] = {.lex_state = 33}, + [1146] = {.lex_state = 28}, [1147] = {.lex_state = 83}, [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 83}, - [1150] = {.lex_state = 83}, + [1149] = {.lex_state = 22}, + [1150] = {.lex_state = 24}, [1151] = {.lex_state = 22}, - [1152] = {.lex_state = 22}, - [1153] = {.lex_state = 24}, + [1152] = {.lex_state = 28}, + [1153] = {.lex_state = 83}, [1154] = {.lex_state = 24}, - [1155] = {.lex_state = 22}, - [1156] = {.lex_state = 83}, + [1155] = {.lex_state = 33}, + [1156] = {.lex_state = 24}, [1157] = {.lex_state = 22}, - [1158] = {.lex_state = 24}, - [1159] = {.lex_state = 83}, + [1158] = {.lex_state = 22}, + [1159] = {.lex_state = 22}, [1160] = {.lex_state = 24}, - [1161] = {.lex_state = 24}, + [1161] = {.lex_state = 22}, [1162] = {.lex_state = 24}, - [1163] = {.lex_state = 28}, + [1163] = {.lex_state = 24}, [1164] = {.lex_state = 22}, - [1165] = {.lex_state = 33}, - [1166] = {.lex_state = 22}, - [1167] = {.lex_state = 24}, - [1168] = {.lex_state = 22}, + [1165] = {.lex_state = 24}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 83}, + [1168] = {.lex_state = 33}, [1169] = {.lex_state = 83}, - [1170] = {.lex_state = 0}, + [1170] = {.lex_state = 28}, [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, + [1173] = {.lex_state = 28}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 33}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 28}, + [1176] = {.lex_state = 28}, + [1177] = {.lex_state = 28}, + [1178] = {.lex_state = 33}, + [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, + [1181] = {.lex_state = 19}, + [1182] = {.lex_state = 33}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 17}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 28}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 28}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 28}, + [1188] = {.lex_state = 33}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, [1191] = {.lex_state = 0}, @@ -12413,305 +12532,306 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 28}, + [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, + [1200] = {.lex_state = 19}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 28}, + [1203] = {.lex_state = 19}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 33}, + [1205] = {.lex_state = 28}, + [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 17}, + [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 33}, [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 17}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 17}, - [1219] = {.lex_state = 28}, - [1220] = {.lex_state = 33}, - [1221] = {.lex_state = 0}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 33}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 33}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 28}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 28}, - [1228] = {.lex_state = 33}, - [1229] = {.lex_state = 33}, - [1230] = {.lex_state = 83}, - [1231] = {.lex_state = 23}, - [1232] = {.lex_state = 23}, + [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 = 0}, - [1235] = {.lex_state = 83}, - [1236] = {.lex_state = 33}, + [1234] = {.lex_state = 19}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 83}, - [1240] = {.lex_state = 23}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 23}, + [1239] = {.lex_state = 33}, + [1240] = {.lex_state = 83}, + [1241] = {.lex_state = 83}, + [1242] = {.lex_state = 0}, [1243] = {.lex_state = 33}, [1244] = {.lex_state = 83}, - [1245] = {.lex_state = 83}, - [1246] = {.lex_state = 28}, - [1247] = {.lex_state = 83}, - [1248] = {.lex_state = 83}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 33}, + [1247] = {.lex_state = 26}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 26}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 33}, - [1255] = {.lex_state = 83}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 28}, - [1258] = {.lex_state = 83}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 83}, + [1252] = {.lex_state = 25}, + [1253] = {.lex_state = 25}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 25}, + [1256] = {.lex_state = 83}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, [1259] = {.lex_state = 83}, [1260] = {.lex_state = 83}, - [1261] = {.lex_state = 33}, - [1262] = {.lex_state = 26}, - [1263] = {.lex_state = 83}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 83}, - [1267] = {.lex_state = 23}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, + [1261] = {.lex_state = 25}, + [1262] = {.lex_state = 83}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 28}, + [1265] = {.lex_state = 83}, + [1266] = {.lex_state = 25}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 83}, + [1269] = {.lex_state = 25}, [1270] = {.lex_state = 83}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 83}, - [1273] = {.lex_state = 33}, + [1271] = {.lex_state = 83}, + [1272] = {.lex_state = 25}, + [1273] = {.lex_state = 26}, [1274] = {.lex_state = 33}, - [1275] = {.lex_state = 83}, - [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 23}, - [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 83}, - [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 33}, - [1284] = {.lex_state = 23}, - [1285] = {.lex_state = 83}, - [1286] = {.lex_state = 23}, + [1275] = {.lex_state = 33}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 83}, + [1278] = {.lex_state = 25}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 25}, + [1281] = {.lex_state = 25}, + [1282] = {.lex_state = 25}, + [1283] = {.lex_state = 83}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 25}, [1287] = {.lex_state = 33}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 83}, - [1290] = {.lex_state = 28}, - [1291] = {.lex_state = 26}, - [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 17}, - [1299] = {.lex_state = 27}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 33}, + [1288] = {.lex_state = 83}, + [1289] = {.lex_state = 26}, + [1290] = {.lex_state = 83}, + [1291] = {.lex_state = 25}, + [1292] = {.lex_state = 83}, + [1293] = {.lex_state = 33}, + [1294] = {.lex_state = 83}, + [1295] = {.lex_state = 25}, + [1296] = {.lex_state = 33}, + [1297] = {.lex_state = 28}, + [1298] = {.lex_state = 25}, + [1299] = {.lex_state = 25}, + [1300] = {.lex_state = 25}, + [1301] = {.lex_state = 28}, [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 27}, + [1303] = {.lex_state = 27}, + [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 27}, - [1307] = {.lex_state = 0}, + [1306] = {.lex_state = 19}, + [1307] = {.lex_state = 27}, [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, + [1309] = {.lex_state = 27}, + [1310] = {.lex_state = 33}, [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 27}, + [1313] = {.lex_state = 33}, + [1314] = {.lex_state = 27}, + [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 27}, - [1318] = {.lex_state = 27}, - [1319] = {.lex_state = 17}, - [1320] = {.lex_state = 17}, - [1321] = {.lex_state = 17}, - [1322] = {.lex_state = 17}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 33}, + [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 83}, - [1325] = {.lex_state = 17}, - [1326] = {.lex_state = 17}, - [1327] = {.lex_state = 27}, - [1328] = {.lex_state = 17}, - [1329] = {.lex_state = 27}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 17}, - [1332] = {.lex_state = 17}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 17}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 33}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 19}, + [1327] = {.lex_state = 19}, + [1328] = {.lex_state = 19}, + [1329] = {.lex_state = 19}, + [1330] = {.lex_state = 19}, + [1331] = {.lex_state = 19}, + [1332] = {.lex_state = 19}, + [1333] = {.lex_state = 19}, + [1334] = {.lex_state = 27}, + [1335] = {.lex_state = 19}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 33}, - [1338] = {.lex_state = 83}, - [1339] = {.lex_state = 0}, + [1338] = {.lex_state = 33}, + [1339] = {.lex_state = 19}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 17}, - [1342] = {.lex_state = 27}, - [1343] = {.lex_state = 33}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 27}, - [1346] = {.lex_state = 17}, - [1347] = {.lex_state = 27}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 33}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 33}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 19}, + [1348] = {.lex_state = 19}, + [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, + [1353] = {.lex_state = 83}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, + [1355] = {.lex_state = 27}, [1356] = {.lex_state = 27}, [1357] = {.lex_state = 27}, [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 27}, - [1361] = {.lex_state = 27}, - [1362] = {.lex_state = 27}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 27}, - [1365] = {.lex_state = 17}, - [1366] = {.lex_state = 33}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 33}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 27}, - [1375] = {.lex_state = 27}, + [1359] = {.lex_state = 27}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 27}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 19}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 33}, + [1368] = {.lex_state = 33}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 33}, + [1371] = {.lex_state = 27}, + [1372] = {.lex_state = 27}, + [1373] = {.lex_state = 27}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 0}, [1376] = {.lex_state = 27}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 27}, + [1377] = {.lex_state = 27}, + [1378] = {.lex_state = 0}, [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 17}, - [1382] = {.lex_state = 17}, - [1383] = {.lex_state = 0}, + [1381] = {.lex_state = 33}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 27}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 27}, - [1388] = {.lex_state = 33}, + [1385] = {.lex_state = 19}, + [1386] = {.lex_state = 27}, + [1387] = {.lex_state = 19}, + [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 17}, + [1390] = {.lex_state = 19}, + [1391] = {.lex_state = 27}, [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, + [1393] = {.lex_state = 19}, + [1394] = {.lex_state = 83}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 33}, - [1397] = {.lex_state = 17}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 33}, + [1400] = {.lex_state = 33}, + [1401] = {.lex_state = 0}, [1402] = {.lex_state = 33}, - [1403] = {.lex_state = 27}, + [1403] = {.lex_state = 33}, [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0}, + [1405] = {.lex_state = 19}, [1406] = {.lex_state = 27}, - [1407] = {.lex_state = 83}, - [1408] = {.lex_state = 33}, - [1409] = {.lex_state = 83}, - [1410] = {.lex_state = 33}, + [1407] = {.lex_state = 0}, + [1408] = {.lex_state = 19}, + [1409] = {.lex_state = 33}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 17}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 17}, - [1415] = {.lex_state = 83}, - [1416] = {.lex_state = 33}, - [1417] = {.lex_state = 0}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 19}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 27}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 33}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 27}, - [1421] = {.lex_state = 33}, + [1419] = {.lex_state = 33}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 83}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 17}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 17}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 27}, + [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 33}, - [1429] = {.lex_state = 33}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, [1430] = {.lex_state = 33}, - [1431] = {.lex_state = 17}, - [1432] = {.lex_state = 27}, + [1431] = {.lex_state = 33}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 33}, - [1435] = {.lex_state = 0}, + [1434] = {.lex_state = 27}, + [1435] = {.lex_state = 33}, [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, + [1437] = {.lex_state = 27}, [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 0}, + [1439] = {.lex_state = 27}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 33}, - [1442] = {.lex_state = 0}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 19}, [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 0}, + [1444] = {.lex_state = 33}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 27}, - [1448] = {.lex_state = 33}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 33}, + [1446] = {.lex_state = 27}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 27}, + [1450] = {.lex_state = 0}, [1451] = {.lex_state = 33}, [1452] = {.lex_state = 33}, - [1453] = {.lex_state = 0}, + [1453] = {.lex_state = 33}, [1454] = {.lex_state = 27}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, + [1455] = {.lex_state = 33}, + [1456] = {.lex_state = 19}, [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 17}, + [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 17}, - [1463] = {.lex_state = 33}, - [1464] = {.lex_state = 17}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 83}, + [1464] = {.lex_state = 33}, + [1465] = {.lex_state = 83}, + [1466] = {.lex_state = 33}, [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 0}, + [1468] = {.lex_state = 27}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 83}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 83}, - [1472] = {.lex_state = 33}, + [1472] = {.lex_state = 83}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 33}, - [1476] = {.lex_state = 83}, + [1474] = {.lex_state = 83}, + [1475] = {.lex_state = 27}, + [1476] = {.lex_state = 33}, [1477] = {.lex_state = 27}, - [1478] = {.lex_state = 83}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 27}, - [1481] = {.lex_state = 27}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 17}, - [1484] = {.lex_state = 33}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 83}, - [1487] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 19}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 19}, + [1482] = {.lex_state = 27}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 83}, + [1485] = {.lex_state = 33}, + [1486] = {.lex_state = 27}, + [1487] = {.lex_state = 83}, [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 83}, - [1490] = {.lex_state = 83}, - [1491] = {.lex_state = 27}, - [1492] = {.lex_state = 83}, - [1493] = {.lex_state = 33}, - [1494] = {.lex_state = 83}, + [1489] = {.lex_state = 19}, + [1490] = {.lex_state = 33}, + [1491] = {.lex_state = 83}, + [1492] = {.lex_state = 19}, + [1493] = {.lex_state = 83}, + [1494] = {.lex_state = 33}, + [1495] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12793,9 +12913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), + [anon_sym_COLON] = 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), [anon_sym_switch] = ACTIONS(1), @@ -12843,70 +12963,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1466), - [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_translation_unit] = STATE(1459), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1020), - [sym_linkage_specification] = STATE(34), + [sym__declaration_specifiers] = STATE(1024), + [sym_linkage_specification] = STATE(39), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(34), + [sym_ms_call_modifier] = STATE(632), + [sym_compound_statement] = STATE(39), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(34), + [sym__type_specifier] = STATE(861), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(39), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -12992,26 +13112,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1376), - [sym_preproc_elif] = STATE(1376), + [sym_preproc_else] = STATE(1309), + [sym_preproc_elif] = STATE(1309), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13025,32 +13145,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), @@ -13132,71 +13252,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [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(1299), - [sym_preproc_elif] = STATE(1299), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [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(1372), + [sym_preproc_elif] = STATE(1372), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(20), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(15), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(20), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(15), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(20), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(15), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), @@ -13278,32 +13398,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { + [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(1486), + [sym_preproc_elif] = STATE(1486), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [5] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1481), - [sym_preproc_elif] = STATE(1481), + [sym_preproc_else] = STATE(1406), + [sym_preproc_elif] = STATE(1406), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13317,37 +13583,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(145), + [aux_sym_preproc_if_token2] = ACTIONS(147), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -13423,33 +13689,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [5] = { + [6] = { [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(1357), - [sym_preproc_elif] = STATE(1357), + [sym_preproc_else] = STATE(1415), + [sym_preproc_elif] = STATE(1415), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13463,37 +13729,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(147), + [aux_sym_preproc_if_token2] = ACTIONS(149), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -13569,77 +13835,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [6] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1318), - [sym_preproc_elif] = STATE(1318), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), + [7] = { + [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(1477), + [sym_preproc_elif] = STATE(1477), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(17), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(14), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(17), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(14), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(17), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(14), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(149), + [aux_sym_preproc_if_token2] = ACTIONS(151), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -13715,33 +13981,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [7] = { + [8] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1345), - [sym_preproc_elif] = STATE(1345), + [sym_preproc_else] = STATE(1314), + [sym_preproc_elif] = STATE(1314), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13755,37 +14021,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(151), + [aux_sym_preproc_if_token2] = ACTIONS(153), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -13861,77 +14127,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [8] = { - [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(1342), - [sym_preproc_elif] = STATE(1342), - [sym_function_definition] = STATE(3), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), + [9] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1475), + [sym_preproc_elif] = STATE(1475), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(3), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(3), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(3), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_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(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(3), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(153), + [aux_sym_preproc_if_token2] = ACTIONS(155), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14007,77 +14273,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [9] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_call] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(1378), - [sym_preproc_elif] = STATE(1378), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), + [10] = { + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1391), + [sym_preproc_elif] = STATE(1391), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(10), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(17), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(10), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(17), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(10), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(17), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(155), + [aux_sym_preproc_if_token2] = ACTIONS(157), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14153,77 +14419,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [10] = { - [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(1315), - [sym_preproc_elif] = STATE(1315), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [11] = { + [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(1307), + [sym_preproc_elif] = STATE(1307), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(20), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(8), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(20), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(8), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(20), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(8), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(159), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14299,77 +14565,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [11] = { - [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(1491), - [sym_preproc_elif] = STATE(1491), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [12] = { + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1303), + [sym_preproc_elif] = STATE(1303), + [sym_function_definition] = STATE(2), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(20), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(2), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(20), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(2), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(20), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(2), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_if_token2] = ACTIONS(161), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14445,77 +14711,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [12] = { - [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(1327), - [sym_preproc_elif] = STATE(1327), - [sym_function_definition] = STATE(7), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), + [13] = { + [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(1356), + [sym_preproc_elif] = STATE(1356), + [sym_function_definition] = STATE(6), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(7), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(6), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(7), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(6), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_case_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_goto_statement] = STATE(7), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(7), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(6), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(161), + [aux_sym_preproc_if_token2] = ACTIONS(163), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14591,77 +14857,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(1477), - [sym_preproc_elif] = STATE(1477), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), + [14] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1449), + [sym_preproc_elif] = STATE(1449), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(11), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(11), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(11), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(163), + [aux_sym_preproc_if_token2] = ACTIONS(165), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14737,77 +15003,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1420), - [sym_preproc_elif] = STATE(1420), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), + [15] = { + [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(1482), + [sym_preproc_elif] = STATE(1482), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(2), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(2), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(2), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_if_token2] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -14883,77 +15149,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [15] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1364), - [sym_preproc_elif] = STATE(1364), - [sym_function_definition] = STATE(4), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), + [16] = { + [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(1359), + [sym_preproc_elif] = STATE(1359), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(4), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(5), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(4), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(5), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(4), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(5), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(5), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(167), + [aux_sym_preproc_if_token2] = ACTIONS(169), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -15029,223 +15295,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [16] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(1375), - [sym_preproc_elif] = STATE(1375), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), + [17] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1383), + [sym_preproc_elif] = STATE(1383), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(18), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(18), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(18), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(105), - [aux_sym_preproc_ifdef_token2] = ACTIONS(105), - [aux_sym_preproc_else_token1] = ACTIONS(107), - [aux_sym_preproc_elif_token1] = ACTIONS(109), - [sym_preproc_directive] = ACTIONS(111), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_typedef] = ACTIONS(115), - [anon_sym_extern] = ACTIONS(117), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [17] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1374), - [sym_preproc_elif] = STATE(1374), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(95), - [aux_sym_preproc_include_token1] = ACTIONS(97), - [aux_sym_preproc_def_token1] = ACTIONS(99), - [aux_sym_preproc_if_token1] = ACTIONS(101), - [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_if_token2] = ACTIONS(171), [aux_sym_preproc_ifdef_token1] = ACTIONS(105), [aux_sym_preproc_ifdef_token2] = ACTIONS(105), [aux_sym_preproc_else_token1] = ACTIONS(107), @@ -15328,26 +15448,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1362), - [sym_preproc_elif] = STATE(1362), + [sym_preproc_else] = STATE(1373), + [sym_preproc_elif] = STATE(1373), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15361,32 +15481,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), @@ -15468,71 +15588,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [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(1347), - [sym_preproc_elif] = STATE(1347), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1386), + [sym_preproc_elif] = STATE(1386), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), - [sym_linkage_specification] = STATE(5), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(18), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), - [sym_compound_statement] = STATE(5), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(18), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(5), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(18), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(95), [aux_sym_preproc_include_token1] = ACTIONS(97), [aux_sym_preproc_def_token1] = ACTIONS(99), @@ -15624,20 +15744,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1023), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(652), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15651,32 +15771,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(177), [aux_sym_preproc_include_token1] = ACTIONS(180), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -15758,69 +15878,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(22), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(22), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(22), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -15910,20 +16030,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), + [sym__declaration_specifiers] = STATE(1017), [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), + [sym_ms_call_modifier] = STATE(634), [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -15937,32 +16057,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16042,69 +16162,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(33), + [sym__declaration_specifiers] = STATE(1024), + [sym_linkage_specification] = STATE(23), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(33), + [sym_ms_call_modifier] = STATE(632), + [sym_compound_statement] = STATE(23), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), + [sym__type_specifier] = STATE(861), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(33), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(359), + [aux_sym_preproc_include_token1] = ACTIONS(362), + [aux_sym_preproc_def_token1] = ACTIONS(365), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(371), + [sym_preproc_directive] = ACTIONS(374), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_AMP] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_typedef] = ACTIONS(380), + [anon_sym_extern] = ACTIONS(383), + [anon_sym___attribute__] = ACTIONS(218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(221), + [anon_sym___declspec] = ACTIONS(224), + [anon_sym___cdecl] = ACTIONS(227), + [anon_sym___clrcall] = ACTIONS(227), + [anon_sym___stdcall] = ACTIONS(227), + [anon_sym___fastcall] = ACTIONS(227), + [anon_sym___thiscall] = ACTIONS(227), + [anon_sym___vectorcall] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_static] = ACTIONS(233), + [anon_sym_auto] = ACTIONS(233), + [anon_sym_register] = ACTIONS(233), + [anon_sym_inline] = ACTIONS(233), + [anon_sym_const] = ACTIONS(236), + [anon_sym_volatile] = ACTIONS(236), + [anon_sym_restrict] = ACTIONS(236), + [anon_sym___restrict__] = ACTIONS(236), + [anon_sym__Atomic] = ACTIONS(236), + [anon_sym__Noreturn] = ACTIONS(236), + [anon_sym_signed] = ACTIONS(239), + [anon_sym_unsigned] = ACTIONS(239), + [anon_sym_long] = ACTIONS(239), + [anon_sym_short] = ACTIONS(239), + [sym_primitive_type] = ACTIONS(242), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_union] = ACTIONS(251), + [anon_sym_if] = ACTIONS(389), + [anon_sym_switch] = ACTIONS(392), + [anon_sym_case] = ACTIONS(395), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(404), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(410), + [anon_sym_break] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_goto] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym_offsetof] = ACTIONS(293), + [anon_sym__Generic] = ACTIONS(296), + [sym_number_literal] = ACTIONS(299), + [anon_sym_L_SQUOTE] = ACTIONS(302), + [anon_sym_u_SQUOTE] = ACTIONS(302), + [anon_sym_U_SQUOTE] = ACTIONS(302), + [anon_sym_u8_SQUOTE] = ACTIONS(302), + [anon_sym_SQUOTE] = ACTIONS(302), + [anon_sym_L_DQUOTE] = ACTIONS(305), + [anon_sym_u_DQUOTE] = ACTIONS(305), + [anon_sym_U_DQUOTE] = ACTIONS(305), + [anon_sym_u8_DQUOTE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_true] = ACTIONS(308), + [sym_false] = ACTIONS(308), + [sym_null] = ACTIONS(308), + [sym_comment] = ACTIONS(3), + }, + [24] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16132,7 +16394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(422), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16183,77 +16445,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [25] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1028), + [sym_linkage_specification] = STATE(42), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(633), + [sym_compound_statement] = STATE(42), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym__type_specifier] = STATE(860), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(42), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(311), - [aux_sym_preproc_include_token1] = ACTIONS(313), - [aux_sym_preproc_def_token1] = ACTIONS(315), - [aux_sym_preproc_if_token1] = ACTIONS(317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(319), - [sym_preproc_directive] = ACTIONS(321), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(424), + [aux_sym_preproc_include_token1] = ACTIONS(426), + [aux_sym_preproc_def_token1] = ACTIONS(428), + [aux_sym_preproc_if_token1] = ACTIONS(430), + [aux_sym_preproc_if_token2] = ACTIONS(432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(434), + [sym_preproc_directive] = ACTIONS(436), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16261,9 +16524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_typedef] = ACTIONS(325), - [anon_sym_extern] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(440), + [anon_sym_extern] = ACTIONS(442), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16273,8 +16536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16293,17 +16555,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -16325,70 +16587,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [25] = { - [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), + [26] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(37), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(41), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(37), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(41), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(37), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(41), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16416,7 +16678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(468), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16467,70 +16729,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [26] = { - [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), + [27] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(37), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(33), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(37), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(33), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(37), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(33), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16558,7 +16820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(470), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16609,70 +16871,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), + [28] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(25), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(25), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(25), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16700,7 +16962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(472), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16751,70 +17013,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), + [29] = { + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(26), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(22), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(26), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(22), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(26), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(22), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16842,7 +17104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16893,70 +17155,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), + [30] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(40), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(28), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(40), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(28), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(40), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(28), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -16984,7 +17246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(476), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17035,7 +17297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [30] = { + [31] = { [sym_preproc_include] = STATE(37), [sym_preproc_def] = STATE(37), [sym_preproc_function_def] = STATE(37), @@ -17046,20 +17308,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), + [sym__declaration_specifiers] = STATE(1017), [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), + [sym_ms_call_modifier] = STATE(634), [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -17073,32 +17335,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -17126,7 +17388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17177,7 +17439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [31] = { + [32] = { [sym_preproc_include] = STATE(37), [sym_preproc_def] = STATE(37), [sym_preproc_function_def] = STATE(37), @@ -17188,20 +17450,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), + [sym__declaration_specifiers] = STATE(1017), [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), + [sym_ms_call_modifier] = STATE(634), [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -17215,32 +17477,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -17268,7 +17530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17319,148 +17581,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1020), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(375), - [sym_identifier] = ACTIONS(377), - [aux_sym_preproc_include_token1] = ACTIONS(380), - [aux_sym_preproc_def_token1] = ACTIONS(383), - [aux_sym_preproc_if_token1] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(389), - [sym_preproc_directive] = ACTIONS(392), - [anon_sym_LPAREN2] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_AMP] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_typedef] = ACTIONS(398), - [anon_sym_extern] = ACTIONS(401), - [anon_sym___attribute__] = ACTIONS(218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(221), - [anon_sym___declspec] = ACTIONS(224), - [anon_sym___cdecl] = ACTIONS(227), - [anon_sym___clrcall] = ACTIONS(227), - [anon_sym___stdcall] = ACTIONS(227), - [anon_sym___fastcall] = ACTIONS(227), - [anon_sym___thiscall] = ACTIONS(227), - [anon_sym___vectorcall] = ACTIONS(227), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_static] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_inline] = ACTIONS(233), - [anon_sym_const] = ACTIONS(236), - [anon_sym_volatile] = ACTIONS(236), - [anon_sym_restrict] = ACTIONS(236), - [anon_sym___restrict__] = ACTIONS(236), - [anon_sym__Atomic] = ACTIONS(236), - [anon_sym__Noreturn] = ACTIONS(236), - [anon_sym_signed] = ACTIONS(239), - [anon_sym_unsigned] = ACTIONS(239), - [anon_sym_long] = ACTIONS(239), - [anon_sym_short] = ACTIONS(239), - [sym_primitive_type] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(245), - [anon_sym_struct] = ACTIONS(248), - [anon_sym_union] = ACTIONS(251), - [anon_sym_if] = ACTIONS(407), - [anon_sym_switch] = ACTIONS(410), - [anon_sym_case] = ACTIONS(413), - [anon_sym_default] = ACTIONS(416), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(422), - [anon_sym_for] = ACTIONS(425), - [anon_sym_return] = ACTIONS(428), - [anon_sym_break] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(434), - [anon_sym_goto] = ACTIONS(437), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_sizeof] = ACTIONS(290), - [anon_sym_offsetof] = ACTIONS(293), - [anon_sym__Generic] = ACTIONS(296), - [sym_number_literal] = ACTIONS(299), - [anon_sym_L_SQUOTE] = ACTIONS(302), - [anon_sym_u_SQUOTE] = ACTIONS(302), - [anon_sym_U_SQUOTE] = ACTIONS(302), - [anon_sym_u8_SQUOTE] = ACTIONS(302), - [anon_sym_SQUOTE] = ACTIONS(302), - [anon_sym_L_DQUOTE] = ACTIONS(305), - [anon_sym_u_DQUOTE] = ACTIONS(305), - [anon_sym_U_DQUOTE] = ACTIONS(305), - [anon_sym_u8_DQUOTE] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(305), - [sym_true] = ACTIONS(308), - [sym_false] = ACTIONS(308), - [sym_null] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - }, [33] = { [sym_preproc_include] = STATE(37), [sym_preproc_def] = STATE(37), @@ -17472,20 +17592,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), + [sym__declaration_specifiers] = STATE(1017), [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), + [sym_ms_call_modifier] = STATE(634), [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -17499,32 +17619,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -17552,7 +17672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(482), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17604,77 +17724,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [34] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1020), - [sym_linkage_specification] = STATE(32), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(24), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(32), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(24), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_goto_statement] = STATE(24), [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(32), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(24), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(442), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17682,9 +17801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17694,7 +17813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17713,17 +17833,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -17746,69 +17866,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [35] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(30), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(32), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(30), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(32), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(30), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(32), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -17836,7 +17956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17898,20 +18018,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1030), + [sym__declaration_specifiers] = STATE(1028), [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(640), + [sym_ms_call_modifier] = STATE(633), [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(860), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -17925,40 +18045,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(36), [sym_continue_statement] = STATE(36), [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(446), - [aux_sym_preproc_include_token1] = ACTIONS(449), - [aux_sym_preproc_def_token1] = ACTIONS(452), - [aux_sym_preproc_if_token1] = ACTIONS(455), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(488), + [aux_sym_preproc_include_token1] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(494), + [aux_sym_preproc_if_token1] = ACTIONS(497), [aux_sym_preproc_if_token2] = ACTIONS(189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(458), - [sym_preproc_directive] = ACTIONS(461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(500), + [sym_preproc_directive] = ACTIONS(503), [anon_sym_LPAREN2] = ACTIONS(197), [anon_sym_BANG] = ACTIONS(200), [anon_sym_TILDE] = ACTIONS(200), @@ -17966,9 +18086,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(203), [anon_sym_STAR] = ACTIONS(206), [anon_sym_AMP] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_typedef] = ACTIONS(467), - [anon_sym_extern] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_typedef] = ACTIONS(509), + [anon_sym_extern] = ACTIONS(512), [anon_sym___attribute__] = ACTIONS(218), [anon_sym_LBRACK_LBRACK] = ACTIONS(221), [anon_sym___declspec] = ACTIONS(224), @@ -17978,7 +18098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(227), [anon_sym___thiscall] = ACTIONS(227), [anon_sym___vectorcall] = ACTIONS(227), - [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(515), [anon_sym_static] = ACTIONS(233), [anon_sym_auto] = ACTIONS(233), [anon_sym_register] = ACTIONS(233), @@ -17997,17 +18117,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [anon_sym_struct] = ACTIONS(248), [anon_sym_union] = ACTIONS(251), - [anon_sym_if] = ACTIONS(476), - [anon_sym_switch] = ACTIONS(479), - [anon_sym_case] = ACTIONS(482), - [anon_sym_default] = ACTIONS(485), - [anon_sym_while] = ACTIONS(488), - [anon_sym_do] = ACTIONS(491), - [anon_sym_for] = ACTIONS(494), - [anon_sym_return] = ACTIONS(497), - [anon_sym_break] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(503), - [anon_sym_goto] = ACTIONS(506), + [anon_sym_if] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(521), + [anon_sym_case] = ACTIONS(524), + [anon_sym_default] = ACTIONS(527), + [anon_sym_while] = ACTIONS(530), + [anon_sym_do] = ACTIONS(533), + [anon_sym_for] = ACTIONS(536), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_goto] = ACTIONS(548), [anon_sym_DASH_DASH] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(287), [anon_sym_sizeof] = ACTIONS(290), @@ -18040,20 +18160,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), + [sym__declaration_specifiers] = STATE(1017), [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), + [sym_ms_call_modifier] = STATE(634), [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -18067,39 +18187,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(509), - [aux_sym_preproc_include_token1] = ACTIONS(512), - [aux_sym_preproc_def_token1] = ACTIONS(515), - [aux_sym_preproc_if_token1] = ACTIONS(518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(521), - [sym_preproc_directive] = ACTIONS(524), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(551), + [aux_sym_preproc_include_token1] = ACTIONS(554), + [aux_sym_preproc_def_token1] = ACTIONS(557), + [aux_sym_preproc_if_token1] = ACTIONS(560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(563), + [sym_preproc_directive] = ACTIONS(566), [anon_sym_LPAREN2] = ACTIONS(197), [anon_sym_BANG] = ACTIONS(200), [anon_sym_TILDE] = ACTIONS(200), @@ -18107,9 +18227,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(203), [anon_sym_STAR] = ACTIONS(206), [anon_sym_AMP] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_typedef] = ACTIONS(530), - [anon_sym_extern] = ACTIONS(533), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(575), [anon_sym___attribute__] = ACTIONS(218), [anon_sym_LBRACK_LBRACK] = ACTIONS(221), [anon_sym___declspec] = ACTIONS(224), @@ -18119,8 +18239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(227), [anon_sym___thiscall] = ACTIONS(227), [anon_sym___vectorcall] = ACTIONS(227), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(357), [anon_sym_static] = ACTIONS(233), [anon_sym_auto] = ACTIONS(233), [anon_sym_register] = ACTIONS(233), @@ -18139,17 +18259,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [anon_sym_struct] = ACTIONS(248), [anon_sym_union] = ACTIONS(251), - [anon_sym_if] = ACTIONS(539), - [anon_sym_switch] = ACTIONS(542), - [anon_sym_case] = ACTIONS(545), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(551), - [anon_sym_do] = ACTIONS(554), - [anon_sym_for] = ACTIONS(557), - [anon_sym_return] = ACTIONS(560), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(566), - [anon_sym_goto] = ACTIONS(569), + [anon_sym_if] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_case] = ACTIONS(587), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(596), + [anon_sym_for] = ACTIONS(599), + [anon_sym_return] = ACTIONS(602), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_goto] = ACTIONS(611), [anon_sym_DASH_DASH] = ACTIONS(287), [anon_sym_PLUS_PLUS] = ACTIONS(287), [anon_sym_sizeof] = ACTIONS(290), @@ -18172,77 +18292,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [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_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1030), - [sym_linkage_specification] = STATE(36), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(21), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(36), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(21), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(36), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(21), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(572), - [aux_sym_preproc_include_token1] = ACTIONS(574), - [aux_sym_preproc_def_token1] = ACTIONS(576), - [aux_sym_preproc_if_token1] = ACTIONS(578), - [aux_sym_preproc_if_token2] = ACTIONS(580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(582), - [sym_preproc_directive] = ACTIONS(584), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18250,9 +18369,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_typedef] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18262,7 +18381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(614), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18281,17 +18401,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18314,218 +18434,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1030), - [sym_linkage_specification] = STATE(38), + [sym__declaration_specifiers] = STATE(1024), + [sym_linkage_specification] = STATE(23), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(38), + [sym_ms_call_modifier] = STATE(632), + [sym_compound_statement] = STATE(23), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(572), - [aux_sym_preproc_include_token1] = ACTIONS(574), - [aux_sym_preproc_def_token1] = ACTIONS(576), - [aux_sym_preproc_if_token1] = ACTIONS(578), - [aux_sym_preproc_if_token2] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(582), - [sym_preproc_directive] = ACTIONS(584), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_typedef] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(590), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [40] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(37), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(23), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(311), - [aux_sym_preproc_include_token1] = ACTIONS(313), - [aux_sym_preproc_def_token1] = ACTIONS(315), - [aux_sym_preproc_if_token1] = ACTIONS(317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(319), - [sym_preproc_directive] = ACTIONS(321), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18533,9 +18512,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_typedef] = ACTIONS(325), - [anon_sym_extern] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18545,8 +18524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18565,17 +18543,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [40] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1017), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(634), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18608,20 +18728,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), + [sym__declaration_specifiers] = STATE(1017), [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), + [sym_ms_call_modifier] = STATE(634), [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(858), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -18635,32 +18755,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(886), + [sym_macro_type_specifier] = STATE(899), [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(311), [aux_sym_preproc_include_token1] = ACTIONS(313), [aux_sym_preproc_def_token1] = ACTIONS(315), @@ -18740,76 +18860,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1031), - [sym_linkage_specification] = STATE(41), + [sym__declaration_specifiers] = STATE(1028), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_ms_call_modifier] = STATE(631), - [sym_compound_statement] = STATE(41), + [sym_ms_call_modifier] = STATE(633), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_translation_unit_repeat1] = STATE(41), + [sym__type_specifier] = STATE(860), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(311), - [aux_sym_preproc_include_token1] = ACTIONS(313), - [aux_sym_preproc_def_token1] = ACTIONS(315), - [aux_sym_preproc_if_token1] = ACTIONS(317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(319), - [sym_preproc_directive] = ACTIONS(321), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(424), + [aux_sym_preproc_include_token1] = ACTIONS(426), + [aux_sym_preproc_def_token1] = ACTIONS(428), + [aux_sym_preproc_if_token1] = ACTIONS(430), + [aux_sym_preproc_if_token2] = ACTIONS(622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(434), + [sym_preproc_directive] = ACTIONS(436), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18817,9 +18938,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_typedef] = ACTIONS(325), - [anon_sym_extern] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(440), + [anon_sym_extern] = ACTIONS(442), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18829,8 +18950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18849,17 +18969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -18882,58 +19002,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1029), + [sym__declaration_specifiers] = STATE(1025), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(45), + [sym_compound_statement] = STATE(44), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(45), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(624), [aux_sym_preproc_include_token1] = ACTIONS(626), [aux_sym_preproc_def_token1] = ACTIONS(626), @@ -19016,68 +19136,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1025), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(628), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_if_token2] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [aux_sym_preproc_else_token1] = ACTIONS(631), + [aux_sym_preproc_elif_token1] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_typedef] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(651), + [anon_sym___attribute__] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(657), + [anon_sym___declspec] = ACTIONS(660), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_static] = ACTIONS(651), + [anon_sym_auto] = ACTIONS(651), + [anon_sym_register] = ACTIONS(651), + [anon_sym_inline] = ACTIONS(651), + [anon_sym_const] = ACTIONS(666), + [anon_sym_volatile] = ACTIONS(666), + [anon_sym_restrict] = ACTIONS(666), + [anon_sym___restrict__] = ACTIONS(666), + [anon_sym__Atomic] = ACTIONS(666), + [anon_sym__Noreturn] = ACTIONS(666), + [anon_sym_signed] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(681), + [anon_sym_if] = ACTIONS(684), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(687), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(690), + [anon_sym_do] = ACTIONS(693), + [anon_sym_for] = ACTIONS(696), + [anon_sym_return] = ACTIONS(699), + [anon_sym_break] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(705), + [anon_sym_goto] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(714), + [anon_sym_offsetof] = ACTIONS(717), + [anon_sym__Generic] = ACTIONS(720), + [sym_number_literal] = ACTIONS(723), + [anon_sym_L_SQUOTE] = ACTIONS(726), + [anon_sym_u_SQUOTE] = ACTIONS(726), + [anon_sym_U_SQUOTE] = ACTIONS(726), + [anon_sym_u8_SQUOTE] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(726), + [anon_sym_L_DQUOTE] = ACTIONS(729), + [anon_sym_u_DQUOTE] = ACTIONS(729), + [anon_sym_U_DQUOTE] = ACTIONS(729), + [anon_sym_u8_DQUOTE] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_null] = ACTIONS(732), + [sym_comment] = ACTIONS(3), + }, + [45] = { + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1029), + [sym__declaration_specifiers] = STATE(1025), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(45), + [sym_compound_statement] = STATE(43), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(45), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(43), [sym_identifier] = ACTIONS(624), - [aux_sym_preproc_include_token1] = ACTIONS(628), - [aux_sym_preproc_def_token1] = ACTIONS(628), - [aux_sym_preproc_if_token1] = ACTIONS(628), - [aux_sym_preproc_if_token2] = ACTIONS(628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(628), - [aux_sym_preproc_else_token1] = ACTIONS(628), - [aux_sym_preproc_elif_token1] = ACTIONS(628), - [sym_preproc_directive] = ACTIONS(628), + [aux_sym_preproc_include_token1] = ACTIONS(735), + [aux_sym_preproc_def_token1] = ACTIONS(735), + [aux_sym_preproc_if_token1] = ACTIONS(735), + [aux_sym_preproc_if_token2] = ACTIONS(735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(735), + [aux_sym_preproc_else_token1] = ACTIONS(735), + [aux_sym_preproc_elif_token1] = ACTIONS(735), + [sym_preproc_directive] = ACTIONS(735), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19091,12 +19345,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(628), - [anon_sym___clrcall] = ACTIONS(628), - [anon_sym___stdcall] = ACTIONS(628), - [anon_sym___fastcall] = ACTIONS(628), - [anon_sym___thiscall] = ACTIONS(628), - [anon_sym___vectorcall] = ACTIONS(628), + [anon_sym___cdecl] = ACTIONS(735), + [anon_sym___clrcall] = ACTIONS(735), + [anon_sym___stdcall] = ACTIONS(735), + [anon_sym___fastcall] = ACTIONS(735), + [anon_sym___thiscall] = ACTIONS(735), + [anon_sym___vectorcall] = ACTIONS(735), [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -19117,10 +19371,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(121), - [anon_sym_else] = ACTIONS(628), + [anon_sym_else] = ACTIONS(735), [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), + [anon_sym_case] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), [anon_sym_while] = ACTIONS(129), [anon_sym_do] = ACTIONS(131), [anon_sym_for] = ACTIONS(133), @@ -19149,193 +19403,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(630), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_if_token2] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [aux_sym_preproc_else_token1] = ACTIONS(633), - [aux_sym_preproc_elif_token1] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym_typedef] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(653), - [anon_sym___attribute__] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(659), - [anon_sym___declspec] = ACTIONS(662), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_static] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_register] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_const] = ACTIONS(668), - [anon_sym_volatile] = ACTIONS(668), - [anon_sym_restrict] = ACTIONS(668), - [anon_sym___restrict__] = ACTIONS(668), - [anon_sym__Atomic] = ACTIONS(668), - [anon_sym__Noreturn] = ACTIONS(668), - [anon_sym_signed] = ACTIONS(671), - [anon_sym_unsigned] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(677), - [anon_sym_struct] = ACTIONS(680), - [anon_sym_union] = ACTIONS(683), - [anon_sym_if] = ACTIONS(686), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(689), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(692), - [anon_sym_do] = ACTIONS(695), - [anon_sym_for] = ACTIONS(698), - [anon_sym_return] = ACTIONS(701), - [anon_sym_break] = ACTIONS(704), - [anon_sym_continue] = ACTIONS(707), - [anon_sym_goto] = ACTIONS(710), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_sizeof] = ACTIONS(716), - [anon_sym_offsetof] = ACTIONS(719), - [anon_sym__Generic] = ACTIONS(722), - [sym_number_literal] = ACTIONS(725), - [anon_sym_L_SQUOTE] = ACTIONS(728), - [anon_sym_u_SQUOTE] = ACTIONS(728), - [anon_sym_U_SQUOTE] = ACTIONS(728), - [anon_sym_u8_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_L_DQUOTE] = ACTIONS(731), - [anon_sym_u_DQUOTE] = ACTIONS(731), - [anon_sym_U_DQUOTE] = ACTIONS(731), - [anon_sym_u8_DQUOTE] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_true] = ACTIONS(734), - [sym_false] = ACTIONS(734), - [sym_null] = ACTIONS(734), - [sym_comment] = ACTIONS(3), - }, [46] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1029), + [sym__declaration_specifiers] = STATE(1025), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(44), + [sym_compound_statement] = STATE(47), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(44), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(624), [aux_sym_preproc_include_token1] = ACTIONS(737), [aux_sym_preproc_def_token1] = ACTIONS(737), @@ -19418,58 +19538,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1029), + [sym__declaration_specifiers] = STATE(1025), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(43), + [sym_compound_statement] = STATE(44), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(43), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(624), [aux_sym_preproc_include_token1] = ACTIONS(739), [aux_sym_preproc_def_token1] = ACTIONS(739), @@ -19552,66 +19672,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1020), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(51), + [sym_compound_statement] = STATE(49), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(741), - [sym_identifier] = ACTIONS(743), - [aux_sym_preproc_include_token1] = ACTIONS(739), - [aux_sym_preproc_def_token1] = ACTIONS(739), - [aux_sym_preproc_if_token1] = ACTIONS(739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(739), - [sym_preproc_directive] = ACTIONS(739), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(741), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_if_token2] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19619,19 +19739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(440), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(739), - [anon_sym___clrcall] = ACTIONS(739), - [anon_sym___stdcall] = ACTIONS(739), - [anon_sym___fastcall] = ACTIONS(739), - [anon_sym___thiscall] = ACTIONS(739), - [anon_sym___vectorcall] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19650,18 +19770,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(739), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19687,18 +19807,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1020), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), [sym_compound_statement] = STATE(60), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -19711,39 +19831,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(60), [sym_continue_statement] = STATE(60), [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(745), - [sym_identifier] = ACTIONS(743), - [aux_sym_preproc_include_token1] = ACTIONS(737), - [aux_sym_preproc_def_token1] = ACTIONS(737), - [aux_sym_preproc_if_token1] = ACTIONS(737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(737), - [sym_preproc_directive] = ACTIONS(737), + [sym_identifier] = ACTIONS(741), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_if_token2] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19751,19 +19871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(440), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(737), - [anon_sym___clrcall] = ACTIONS(737), - [anon_sym___stdcall] = ACTIONS(737), - [anon_sym___fastcall] = ACTIONS(737), - [anon_sym___thiscall] = ACTIONS(737), - [anon_sym___vectorcall] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19782,18 +19902,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(737), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(737), - [anon_sym_default] = ACTIONS(737), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19816,66 +19936,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1027), + [sym__declaration_specifiers] = STATE(1020), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(59), + [sym_compound_statement] = STATE(60), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(747), - [aux_sym_preproc_include_token1] = ACTIONS(737), - [aux_sym_preproc_def_token1] = ACTIONS(737), - [aux_sym_preproc_if_token1] = ACTIONS(737), - [aux_sym_preproc_if_token2] = ACTIONS(737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(737), - [sym_preproc_directive] = ACTIONS(737), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(741), + [aux_sym_preproc_include_token1] = ACTIONS(626), + [aux_sym_preproc_def_token1] = ACTIONS(626), + [aux_sym_preproc_if_token1] = ACTIONS(626), + [aux_sym_preproc_if_token2] = ACTIONS(626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(626), + [sym_preproc_directive] = ACTIONS(626), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19883,19 +20003,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_typedef] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(440), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(737), - [anon_sym___clrcall] = ACTIONS(737), - [anon_sym___stdcall] = ACTIONS(737), - [anon_sym___fastcall] = ACTIONS(737), - [anon_sym___thiscall] = ACTIONS(737), - [anon_sym___vectorcall] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym___cdecl] = ACTIONS(626), + [anon_sym___clrcall] = ACTIONS(626), + [anon_sym___stdcall] = ACTIONS(626), + [anon_sym___fastcall] = ACTIONS(626), + [anon_sym___thiscall] = ACTIONS(626), + [anon_sym___vectorcall] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19914,18 +20034,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(594), - [anon_sym_else] = ACTIONS(737), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(737), - [anon_sym_default] = ACTIONS(737), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(626), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -19948,60 +20068,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [51] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1030), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(62), + [sym_compound_statement] = STATE(51), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(749), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(51), [sym_identifier] = ACTIONS(743), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_typedef] = ACTIONS(749), + [anon_sym_extern] = ACTIONS(651), + [anon_sym___attribute__] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(657), + [anon_sym___declspec] = ACTIONS(660), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_static] = ACTIONS(651), + [anon_sym_auto] = ACTIONS(651), + [anon_sym_register] = ACTIONS(651), + [anon_sym_inline] = ACTIONS(651), + [anon_sym_const] = ACTIONS(666), + [anon_sym_volatile] = ACTIONS(666), + [anon_sym_restrict] = ACTIONS(666), + [anon_sym___restrict__] = ACTIONS(666), + [anon_sym__Atomic] = ACTIONS(666), + [anon_sym__Noreturn] = ACTIONS(666), + [anon_sym_signed] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(681), + [anon_sym_if] = ACTIONS(757), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(763), + [anon_sym_do] = ACTIONS(766), + [anon_sym_for] = ACTIONS(769), + [anon_sym_return] = ACTIONS(772), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(778), + [anon_sym_goto] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(714), + [anon_sym_offsetof] = ACTIONS(717), + [anon_sym__Generic] = ACTIONS(720), + [sym_number_literal] = ACTIONS(723), + [anon_sym_L_SQUOTE] = ACTIONS(726), + [anon_sym_u_SQUOTE] = ACTIONS(726), + [anon_sym_U_SQUOTE] = ACTIONS(726), + [anon_sym_u8_SQUOTE] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(726), + [anon_sym_L_DQUOTE] = ACTIONS(729), + [anon_sym_u_DQUOTE] = ACTIONS(729), + [anon_sym_U_DQUOTE] = ACTIONS(729), + [anon_sym_u8_DQUOTE] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_null] = ACTIONS(732), + [sym_comment] = ACTIONS(3), + }, + [52] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1030), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(784), [aux_sym_preproc_include_token1] = ACTIONS(626), [aux_sym_preproc_def_token1] = ACTIONS(626), [aux_sym_preproc_if_token1] = ACTIONS(626), @@ -20015,8 +20266,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -20027,7 +20278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(626), [anon_sym___thiscall] = ACTIONS(626), [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(786), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20046,18 +20298,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(335), [anon_sym_case] = ACTIONS(626), [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20079,64 +20331,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), + [53] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1027), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(61), + [sym_compound_statement] = STATE(53), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(747), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(53), + [ts_builtin_sym_end] = ACTIONS(755), + [sym_identifier] = ACTIONS(788), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_typedef] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(651), + [anon_sym___attribute__] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(657), + [anon_sym___declspec] = ACTIONS(660), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_static] = ACTIONS(651), + [anon_sym_auto] = ACTIONS(651), + [anon_sym_register] = ACTIONS(651), + [anon_sym_inline] = ACTIONS(651), + [anon_sym_const] = ACTIONS(666), + [anon_sym_volatile] = ACTIONS(666), + [anon_sym_restrict] = ACTIONS(666), + [anon_sym___restrict__] = ACTIONS(666), + [anon_sym__Atomic] = ACTIONS(666), + [anon_sym__Noreturn] = ACTIONS(666), + [anon_sym_signed] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(681), + [anon_sym_if] = ACTIONS(800), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(803), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(806), + [anon_sym_do] = ACTIONS(809), + [anon_sym_for] = ACTIONS(812), + [anon_sym_return] = ACTIONS(815), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_goto] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(714), + [anon_sym_offsetof] = ACTIONS(717), + [anon_sym__Generic] = ACTIONS(720), + [sym_number_literal] = ACTIONS(723), + [anon_sym_L_SQUOTE] = ACTIONS(726), + [anon_sym_u_SQUOTE] = ACTIONS(726), + [anon_sym_U_SQUOTE] = ACTIONS(726), + [anon_sym_u8_SQUOTE] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(726), + [anon_sym_L_DQUOTE] = ACTIONS(729), + [anon_sym_u_DQUOTE] = ACTIONS(729), + [anon_sym_U_DQUOTE] = ACTIONS(729), + [anon_sym_u8_DQUOTE] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_null] = ACTIONS(732), + [sym_comment] = ACTIONS(3), + }, + [54] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1021), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(53), + [ts_builtin_sym_end] = ACTIONS(786), + [sym_identifier] = ACTIONS(827), [aux_sym_preproc_include_token1] = ACTIONS(626), [aux_sym_preproc_def_token1] = ACTIONS(626), [aux_sym_preproc_if_token1] = ACTIONS(626), - [aux_sym_preproc_if_token2] = ACTIONS(626), [aux_sym_preproc_ifdef_token1] = ACTIONS(626), [aux_sym_preproc_ifdef_token2] = ACTIONS(626), [sym_preproc_directive] = ACTIONS(626), @@ -20147,8 +20531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_typedef] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -20159,7 +20543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(626), [anon_sym___thiscall] = ACTIONS(626), [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20178,18 +20562,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(594), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(596), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(626), [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20211,67 +20595,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), + [55] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1027), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(52), + [sym_compound_statement] = STATE(57), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(747), - [aux_sym_preproc_include_token1] = ACTIONS(739), - [aux_sym_preproc_def_token1] = ACTIONS(739), - [aux_sym_preproc_if_token1] = ACTIONS(739), - [aux_sym_preproc_if_token2] = ACTIONS(739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(739), - [sym_preproc_directive] = ACTIONS(739), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(829), + [sym_identifier] = ACTIONS(827), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20279,19 +20663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_typedef] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(739), - [anon_sym___clrcall] = ACTIONS(739), - [anon_sym___stdcall] = ACTIONS(739), - [anon_sym___fastcall] = ACTIONS(739), - [anon_sym___thiscall] = ACTIONS(739), - [anon_sym___vectorcall] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20310,18 +20694,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(594), - [anon_sym_else] = ACTIONS(739), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20343,154 +20727,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1022), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(751), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_typedef] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(653), - [anon_sym___attribute__] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(659), - [anon_sym___declspec] = ACTIONS(662), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_static] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_register] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_const] = ACTIONS(668), - [anon_sym_volatile] = ACTIONS(668), - [anon_sym_restrict] = ACTIONS(668), - [anon_sym___restrict__] = ACTIONS(668), - [anon_sym__Atomic] = ACTIONS(668), - [anon_sym__Noreturn] = ACTIONS(668), - [anon_sym_signed] = ACTIONS(671), - [anon_sym_unsigned] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(677), - [anon_sym_struct] = ACTIONS(680), - [anon_sym_union] = ACTIONS(683), - [anon_sym_if] = ACTIONS(765), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(768), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(771), - [anon_sym_do] = ACTIONS(774), - [anon_sym_for] = ACTIONS(777), - [anon_sym_return] = ACTIONS(780), - [anon_sym_break] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(786), - [anon_sym_goto] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_sizeof] = ACTIONS(716), - [anon_sym_offsetof] = ACTIONS(719), - [anon_sym__Generic] = ACTIONS(722), - [sym_number_literal] = ACTIONS(725), - [anon_sym_L_SQUOTE] = ACTIONS(728), - [anon_sym_u_SQUOTE] = ACTIONS(728), - [anon_sym_U_SQUOTE] = ACTIONS(728), - [anon_sym_u8_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_L_DQUOTE] = ACTIONS(731), - [anon_sym_u_DQUOTE] = ACTIONS(731), - [anon_sym_U_DQUOTE] = ACTIONS(731), - [anon_sym_u8_DQUOTE] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_true] = ACTIONS(734), - [sym_false] = ACTIONS(734), - [sym_null] = ACTIONS(734), - [sym_comment] = ACTIONS(3), - }, - [55] = { + [56] = { [sym_declaration] = STATE(54), [sym_type_definition] = STATE(54), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1022), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), [sym_compound_statement] = STATE(54), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), [sym_attributed_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -20504,37 +20756,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(54), [sym_goto_statement] = STATE(54), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_include_token1] = ACTIONS(628), - [aux_sym_preproc_def_token1] = ACTIONS(628), - [aux_sym_preproc_if_token1] = ACTIONS(628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(628), - [sym_preproc_directive] = ACTIONS(628), + [ts_builtin_sym_end] = ACTIONS(831), + [sym_identifier] = ACTIONS(827), + [aux_sym_preproc_include_token1] = ACTIONS(735), + [aux_sym_preproc_def_token1] = ACTIONS(735), + [aux_sym_preproc_if_token1] = ACTIONS(735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(735), + [sym_preproc_directive] = ACTIONS(735), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20542,20 +20795,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_typedef] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(628), - [anon_sym___clrcall] = ACTIONS(628), - [anon_sym___stdcall] = ACTIONS(628), - [anon_sym___fastcall] = ACTIONS(628), - [anon_sym___thiscall] = ACTIONS(628), - [anon_sym___vectorcall] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym___cdecl] = ACTIONS(735), + [anon_sym___clrcall] = ACTIONS(735), + [anon_sym___stdcall] = ACTIONS(735), + [anon_sym___fastcall] = ACTIONS(735), + [anon_sym___thiscall] = ACTIONS(735), + [anon_sym___vectorcall] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20574,18 +20826,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(735), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20607,66 +20859,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), + [57] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1022), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(54), + [sym_compound_statement] = STATE(53), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_include_token1] = ACTIONS(626), - [aux_sym_preproc_def_token1] = ACTIONS(626), - [aux_sym_preproc_if_token1] = ACTIONS(626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(53), + [ts_builtin_sym_end] = ACTIONS(833), + [sym_identifier] = ACTIONS(827), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20674,20 +20927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_typedef] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(626), - [anon_sym___clrcall] = ACTIONS(626), - [anon_sym___stdcall] = ACTIONS(626), - [anon_sym___fastcall] = ACTIONS(626), - [anon_sym___thiscall] = ACTIONS(626), - [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20706,18 +20958,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20739,66 +20991,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), + [58] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1022), + [sym__declaration_specifiers] = STATE(1030), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(55), + [sym_compound_statement] = STATE(51), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_include_token1] = ACTIONS(737), - [aux_sym_preproc_def_token1] = ACTIONS(737), - [aux_sym_preproc_if_token1] = ACTIONS(737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(737), - [sym_preproc_directive] = ACTIONS(737), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(784), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20812,14 +21064,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(737), - [anon_sym___clrcall] = ACTIONS(737), - [anon_sym___stdcall] = ACTIONS(737), - [anon_sym___fastcall] = ACTIONS(737), - [anon_sym___thiscall] = ACTIONS(737), - [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20839,10 +21091,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(737), + [anon_sym_else] = ACTIONS(739), [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(737), - [anon_sym_default] = ACTIONS(737), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), [anon_sym_while] = ACTIONS(341), [anon_sym_do] = ACTIONS(343), [anon_sym_for] = ACTIONS(345), @@ -20871,66 +21123,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), + [59] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1022), + [sym__declaration_specifiers] = STATE(1030), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(56), + [sym_compound_statement] = STATE(52), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_include_token1] = ACTIONS(739), - [aux_sym_preproc_def_token1] = ACTIONS(739), - [aux_sym_preproc_if_token1] = ACTIONS(739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(739), - [sym_preproc_directive] = ACTIONS(739), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(784), + [aux_sym_preproc_include_token1] = ACTIONS(735), + [aux_sym_preproc_def_token1] = ACTIONS(735), + [aux_sym_preproc_if_token1] = ACTIONS(735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(735), + [sym_preproc_directive] = ACTIONS(735), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20944,14 +21196,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(739), - [anon_sym___clrcall] = ACTIONS(739), - [anon_sym___stdcall] = ACTIONS(739), - [anon_sym___fastcall] = ACTIONS(739), - [anon_sym___thiscall] = ACTIONS(739), - [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym___cdecl] = ACTIONS(735), + [anon_sym___clrcall] = ACTIONS(735), + [anon_sym___stdcall] = ACTIONS(735), + [anon_sym___fastcall] = ACTIONS(735), + [anon_sym___thiscall] = ACTIONS(735), + [anon_sym___vectorcall] = ACTIONS(735), [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(831), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20971,10 +21223,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(739), + [anon_sym_else] = ACTIONS(735), [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), + [anon_sym_case] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), [anon_sym_while] = ACTIONS(341), [anon_sym_do] = ACTIONS(343), [anon_sym_for] = ACTIONS(345), @@ -21003,67 +21255,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), + [60] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1027), + [sym__declaration_specifiers] = STATE(1020), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(61), + [sym_compound_statement] = STATE(60), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(747), - [aux_sym_preproc_include_token1] = ACTIONS(628), - [aux_sym_preproc_def_token1] = ACTIONS(628), - [aux_sym_preproc_if_token1] = ACTIONS(628), - [aux_sym_preproc_if_token2] = ACTIONS(628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(628), - [sym_preproc_directive] = ACTIONS(628), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(835), + [aux_sym_preproc_include_token1] = ACTIONS(631), + [aux_sym_preproc_def_token1] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(631), + [aux_sym_preproc_if_token2] = ACTIONS(631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_typedef] = ACTIONS(841), + [anon_sym_extern] = ACTIONS(651), + [anon_sym___attribute__] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(657), + [anon_sym___declspec] = ACTIONS(660), + [anon_sym___cdecl] = ACTIONS(631), + [anon_sym___clrcall] = ACTIONS(631), + [anon_sym___stdcall] = ACTIONS(631), + [anon_sym___fastcall] = ACTIONS(631), + [anon_sym___thiscall] = ACTIONS(631), + [anon_sym___vectorcall] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_static] = ACTIONS(651), + [anon_sym_auto] = ACTIONS(651), + [anon_sym_register] = ACTIONS(651), + [anon_sym_inline] = ACTIONS(651), + [anon_sym_const] = ACTIONS(666), + [anon_sym_volatile] = ACTIONS(666), + [anon_sym_restrict] = ACTIONS(666), + [anon_sym___restrict__] = ACTIONS(666), + [anon_sym__Atomic] = ACTIONS(666), + [anon_sym__Noreturn] = ACTIONS(666), + [anon_sym_signed] = ACTIONS(669), + [anon_sym_unsigned] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [sym_primitive_type] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_union] = ACTIONS(681), + [anon_sym_if] = ACTIONS(847), + [anon_sym_else] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_case] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(853), + [anon_sym_do] = ACTIONS(856), + [anon_sym_for] = ACTIONS(859), + [anon_sym_return] = ACTIONS(862), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_goto] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(714), + [anon_sym_offsetof] = ACTIONS(717), + [anon_sym__Generic] = ACTIONS(720), + [sym_number_literal] = ACTIONS(723), + [anon_sym_L_SQUOTE] = ACTIONS(726), + [anon_sym_u_SQUOTE] = ACTIONS(726), + [anon_sym_U_SQUOTE] = ACTIONS(726), + [anon_sym_u8_SQUOTE] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(726), + [anon_sym_L_DQUOTE] = ACTIONS(729), + [anon_sym_u_DQUOTE] = ACTIONS(729), + [anon_sym_U_DQUOTE] = ACTIONS(729), + [anon_sym_u8_DQUOTE] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_null] = ACTIONS(732), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1020), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(741), + [aux_sym_preproc_include_token1] = ACTIONS(735), + [aux_sym_preproc_def_token1] = ACTIONS(735), + [aux_sym_preproc_if_token1] = ACTIONS(735), + [aux_sym_preproc_if_token2] = ACTIONS(735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(735), + [aux_sym_preproc_ifdef_token2] = ACTIONS(735), + [sym_preproc_directive] = ACTIONS(735), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21071,19 +21455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_typedef] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(440), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(628), - [anon_sym___clrcall] = ACTIONS(628), - [anon_sym___stdcall] = ACTIONS(628), - [anon_sym___fastcall] = ACTIONS(628), - [anon_sym___thiscall] = ACTIONS(628), - [anon_sym___vectorcall] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym___cdecl] = ACTIONS(735), + [anon_sym___clrcall] = ACTIONS(735), + [anon_sym___stdcall] = ACTIONS(735), + [anon_sym___fastcall] = ACTIONS(735), + [anon_sym___thiscall] = ACTIONS(735), + [anon_sym___vectorcall] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21102,18 +21486,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(594), - [anon_sym_else] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(735), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21135,67 +21519,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), + [62] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1030), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(62), + [sym_compound_statement] = STATE(58), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(794), - [sym_identifier] = ACTIONS(743), - [aux_sym_preproc_include_token1] = ACTIONS(628), - [aux_sym_preproc_def_token1] = ACTIONS(628), - [aux_sym_preproc_if_token1] = ACTIONS(628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(628), - [sym_preproc_directive] = ACTIONS(628), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(784), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21203,19 +21586,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(628), - [anon_sym___clrcall] = ACTIONS(628), - [anon_sym___stdcall] = ACTIONS(628), - [anon_sym___fastcall] = ACTIONS(628), - [anon_sym___thiscall] = ACTIONS(628), - [anon_sym___vectorcall] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21234,18 +21618,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21267,307 +21651,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1027), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(796), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_if_token2] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_extern] = ACTIONS(653), - [anon_sym___attribute__] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(659), - [anon_sym___declspec] = ACTIONS(662), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_static] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_register] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_const] = ACTIONS(668), - [anon_sym_volatile] = ACTIONS(668), - [anon_sym_restrict] = ACTIONS(668), - [anon_sym___restrict__] = ACTIONS(668), - [anon_sym__Atomic] = ACTIONS(668), - [anon_sym__Noreturn] = ACTIONS(668), - [anon_sym_signed] = ACTIONS(671), - [anon_sym_unsigned] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(677), - [anon_sym_struct] = ACTIONS(680), - [anon_sym_union] = ACTIONS(683), - [anon_sym_if] = ACTIONS(808), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(811), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(817), - [anon_sym_for] = ACTIONS(820), - [anon_sym_return] = ACTIONS(823), - [anon_sym_break] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_goto] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_sizeof] = ACTIONS(716), - [anon_sym_offsetof] = ACTIONS(719), - [anon_sym__Generic] = ACTIONS(722), - [sym_number_literal] = ACTIONS(725), - [anon_sym_L_SQUOTE] = ACTIONS(728), - [anon_sym_u_SQUOTE] = ACTIONS(728), - [anon_sym_U_SQUOTE] = ACTIONS(728), - [anon_sym_u8_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_L_DQUOTE] = ACTIONS(731), - [anon_sym_u_DQUOTE] = ACTIONS(731), - [anon_sym_U_DQUOTE] = ACTIONS(731), - [anon_sym_u8_DQUOTE] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_true] = ACTIONS(734), - [sym_false] = ACTIONS(734), - [sym_null] = ACTIONS(734), - [sym_comment] = ACTIONS(3), - }, - [62] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), - [sym_attribute_specifier] = STATE(654), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(654), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(654), - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(763), - [sym_identifier] = ACTIONS(835), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_typedef] = ACTIONS(841), - [anon_sym_extern] = ACTIONS(653), - [anon_sym___attribute__] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(659), - [anon_sym___declspec] = ACTIONS(662), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_static] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_register] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_const] = ACTIONS(668), - [anon_sym_volatile] = ACTIONS(668), - [anon_sym_restrict] = ACTIONS(668), - [anon_sym___restrict__] = ACTIONS(668), - [anon_sym__Atomic] = ACTIONS(668), - [anon_sym__Noreturn] = ACTIONS(668), - [anon_sym_signed] = ACTIONS(671), - [anon_sym_unsigned] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [sym_primitive_type] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(677), - [anon_sym_struct] = ACTIONS(680), - [anon_sym_union] = ACTIONS(683), - [anon_sym_if] = ACTIONS(847), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(853), - [anon_sym_do] = ACTIONS(856), - [anon_sym_for] = ACTIONS(859), - [anon_sym_return] = ACTIONS(862), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(868), - [anon_sym_goto] = ACTIONS(871), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_sizeof] = ACTIONS(716), - [anon_sym_offsetof] = ACTIONS(719), - [anon_sym__Generic] = ACTIONS(722), - [sym_number_literal] = ACTIONS(725), - [anon_sym_L_SQUOTE] = ACTIONS(728), - [anon_sym_u_SQUOTE] = ACTIONS(728), - [anon_sym_U_SQUOTE] = ACTIONS(728), - [anon_sym_u8_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_L_DQUOTE] = ACTIONS(731), - [anon_sym_u_DQUOTE] = ACTIONS(731), - [anon_sym_U_DQUOTE] = ACTIONS(731), - [anon_sym_u8_DQUOTE] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_true] = ACTIONS(734), - [sym_false] = ACTIONS(734), - [sym_null] = ACTIONS(734), - [sym_comment] = ACTIONS(3), - }, [63] = { - [sym_declaration] = STATE(482), + [sym_declaration] = STATE(459), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(654), [sym_ms_declspec_modifier] = STATE(654), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(810), - [sym_comma_expression] = STATE(1469), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1480), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -21621,42 +21741,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(477), + [sym_declaration] = STATE(461), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(654), [sym_ms_declspec_modifier] = STATE(654), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(797), - [sym_comma_expression] = STATE(1294), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(754), + [sym_comma_expression] = STATE(1336), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -21710,42 +21830,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(457), + [sym_declaration] = STATE(464), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(654), [sym_ms_declspec_modifier] = STATE(654), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(766), - [sym_comma_expression] = STATE(1487), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(803), + [sym_comma_expression] = STATE(1488), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -21799,42 +21919,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(447), + [sym_declaration] = STATE(476), [sym__declaration_modifiers] = STATE(654), - [sym__declaration_specifiers] = STATE(1024), + [sym__declaration_specifiers] = STATE(1021), [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(654), [sym_ms_declspec_modifier] = STATE(654), [sym_storage_class_specifier] = STATE(654), [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(702), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1479), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), + [sym__type_specifier] = STATE(708), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1470), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), [aux_sym__declaration_specifiers_repeat1] = STATE(654), - [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_sized_type_specifier_repeat1] = STATE(780), [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -21889,25 +22009,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [67] = { [sym__expression] = STATE(590), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(602), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(602), - [sym_call_expression] = STATE(602), - [sym_field_expression] = STATE(602), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(602), - [sym_initializer_list] = STATE(589), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(589), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(589), + [sym_call_expression] = STATE(589), + [sym_field_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(589), + [sym_initializer_list] = STATE(591), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym_identifier] = ACTIONS(886), [anon_sym_COMMA] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(888), @@ -22186,7 +22306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(914), [anon_sym_union] = ACTIONS(914), [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(914), [anon_sym_case] = ACTIONS(914), [anon_sym_default] = ACTIONS(914), @@ -22219,741 +22339,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [aux_sym_preproc_else_token1] = ACTIONS(920), - [aux_sym_preproc_elif_token1] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), + [sym_identifier] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [aux_sym_preproc_else_token1] = ACTIONS(918), + [aux_sym_preproc_elif_token1] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(920), + [anon_sym___declspec] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [anon_sym___restrict__] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [anon_sym__Noreturn] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_offsetof] = ACTIONS(918), + [anon_sym__Generic] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_L_SQUOTE] = ACTIONS(920), + [anon_sym_u_SQUOTE] = ACTIONS(920), + [anon_sym_U_SQUOTE] = ACTIONS(920), + [anon_sym_u8_SQUOTE] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_L_DQUOTE] = ACTIONS(920), + [anon_sym_u_DQUOTE] = ACTIONS(920), + [anon_sym_U_DQUOTE] = ACTIONS(920), + [anon_sym_u8_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_null] = ACTIONS(918), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [aux_sym_preproc_else_token1] = ACTIONS(924), - [aux_sym_preproc_elif_token1] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(922), + [aux_sym_preproc_def_token1] = ACTIONS(922), + [aux_sym_preproc_if_token1] = ACTIONS(922), + [aux_sym_preproc_if_token2] = ACTIONS(922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(922), + [aux_sym_preproc_else_token1] = ACTIONS(922), + [aux_sym_preproc_elif_token1] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_LPAREN2] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym___attribute__] = ACTIONS(922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(924), + [anon_sym___declspec] = ACTIONS(922), + [anon_sym___cdecl] = ACTIONS(922), + [anon_sym___clrcall] = ACTIONS(922), + [anon_sym___stdcall] = ACTIONS(922), + [anon_sym___fastcall] = ACTIONS(922), + [anon_sym___thiscall] = ACTIONS(922), + [anon_sym___vectorcall] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym___restrict__] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym__Noreturn] = ACTIONS(922), + [anon_sym_signed] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(922), + [anon_sym_offsetof] = ACTIONS(922), + [anon_sym__Generic] = ACTIONS(922), + [sym_number_literal] = ACTIONS(924), + [anon_sym_L_SQUOTE] = ACTIONS(924), + [anon_sym_u_SQUOTE] = ACTIONS(924), + [anon_sym_U_SQUOTE] = ACTIONS(924), + [anon_sym_u8_SQUOTE] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(924), + [anon_sym_L_DQUOTE] = ACTIONS(924), + [anon_sym_u_DQUOTE] = ACTIONS(924), + [anon_sym_U_DQUOTE] = ACTIONS(924), + [anon_sym_u8_DQUOTE] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(924), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), [sym_comment] = ACTIONS(3), }, [73] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [aux_sym_preproc_else_token1] = ACTIONS(928), - [aux_sym_preproc_elif_token1] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [aux_sym_preproc_else_token1] = ACTIONS(914), + [aux_sym_preproc_elif_token1] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [aux_sym_preproc_else_token1] = ACTIONS(932), - [aux_sym_preproc_elif_token1] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(926), + [aux_sym_preproc_if_token1] = ACTIONS(926), + [aux_sym_preproc_if_token2] = ACTIONS(926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(926), + [aux_sym_preproc_else_token1] = ACTIONS(926), + [aux_sym_preproc_elif_token1] = ACTIONS(926), + [sym_preproc_directive] = ACTIONS(926), + [anon_sym_LPAREN2] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym___attribute__] = ACTIONS(926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(928), + [anon_sym___declspec] = ACTIONS(926), + [anon_sym___cdecl] = ACTIONS(926), + [anon_sym___clrcall] = ACTIONS(926), + [anon_sym___stdcall] = ACTIONS(926), + [anon_sym___fastcall] = ACTIONS(926), + [anon_sym___thiscall] = ACTIONS(926), + [anon_sym___vectorcall] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_static] = ACTIONS(926), + [anon_sym_auto] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_signed] = ACTIONS(926), + [anon_sym_unsigned] = ACTIONS(926), + [anon_sym_long] = ACTIONS(926), + [anon_sym_short] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_goto] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(926), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(926), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(928), + [anon_sym_u_SQUOTE] = ACTIONS(928), + [anon_sym_U_SQUOTE] = ACTIONS(928), + [anon_sym_u8_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_L_DQUOTE] = ACTIONS(928), + [anon_sym_u_DQUOTE] = ACTIONS(928), + [anon_sym_U_DQUOTE] = ACTIONS(928), + [anon_sym_u8_DQUOTE] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(928), + [sym_true] = ACTIONS(926), + [sym_false] = ACTIONS(926), + [sym_null] = ACTIONS(926), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [aux_sym_preproc_else_token1] = ACTIONS(936), - [aux_sym_preproc_elif_token1] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [sym_identifier] = ACTIONS(930), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_if_token2] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [aux_sym_preproc_else_token1] = ACTIONS(930), + [aux_sym_preproc_elif_token1] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_LPAREN2] = ACTIONS(932), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym___attribute__] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(932), + [anon_sym___declspec] = ACTIONS(930), + [anon_sym___cdecl] = ACTIONS(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_static] = ACTIONS(930), + [anon_sym_auto] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_inline] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_volatile] = ACTIONS(930), + [anon_sym_restrict] = ACTIONS(930), + [anon_sym___restrict__] = ACTIONS(930), + [anon_sym__Atomic] = ACTIONS(930), + [anon_sym__Noreturn] = ACTIONS(930), + [anon_sym_signed] = ACTIONS(930), + [anon_sym_unsigned] = ACTIONS(930), + [anon_sym_long] = ACTIONS(930), + [anon_sym_short] = ACTIONS(930), + [sym_primitive_type] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_goto] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_sizeof] = ACTIONS(930), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(930), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(932), + [anon_sym_u_SQUOTE] = ACTIONS(932), + [anon_sym_U_SQUOTE] = ACTIONS(932), + [anon_sym_u8_SQUOTE] = ACTIONS(932), + [anon_sym_SQUOTE] = ACTIONS(932), + [anon_sym_L_DQUOTE] = ACTIONS(932), + [anon_sym_u_DQUOTE] = ACTIONS(932), + [anon_sym_U_DQUOTE] = ACTIONS(932), + [anon_sym_u8_DQUOTE] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(932), + [sym_true] = ACTIONS(930), + [sym_false] = ACTIONS(930), + [sym_null] = ACTIONS(930), [sym_comment] = ACTIONS(3), }, [76] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [aux_sym_preproc_else_token1] = ACTIONS(940), - [aux_sym_preproc_elif_token1] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [sym_identifier] = ACTIONS(934), + [aux_sym_preproc_include_token1] = ACTIONS(934), + [aux_sym_preproc_def_token1] = ACTIONS(934), + [aux_sym_preproc_if_token1] = ACTIONS(934), + [aux_sym_preproc_if_token2] = ACTIONS(934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(934), + [aux_sym_preproc_else_token1] = ACTIONS(934), + [aux_sym_preproc_elif_token1] = ACTIONS(934), + [sym_preproc_directive] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym___attribute__] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [anon_sym___declspec] = ACTIONS(934), + [anon_sym___cdecl] = ACTIONS(934), + [anon_sym___clrcall] = ACTIONS(934), + [anon_sym___stdcall] = ACTIONS(934), + [anon_sym___fastcall] = ACTIONS(934), + [anon_sym___thiscall] = ACTIONS(934), + [anon_sym___vectorcall] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_static] = ACTIONS(934), + [anon_sym_auto] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_inline] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_volatile] = ACTIONS(934), + [anon_sym_restrict] = ACTIONS(934), + [anon_sym___restrict__] = ACTIONS(934), + [anon_sym__Atomic] = ACTIONS(934), + [anon_sym__Noreturn] = ACTIONS(934), + [anon_sym_signed] = ACTIONS(934), + [anon_sym_unsigned] = ACTIONS(934), + [anon_sym_long] = ACTIONS(934), + [anon_sym_short] = ACTIONS(934), + [sym_primitive_type] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_switch] = ACTIONS(934), + [anon_sym_case] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_goto] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_sizeof] = ACTIONS(934), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(934), + [sym_number_literal] = ACTIONS(936), + [anon_sym_L_SQUOTE] = ACTIONS(936), + [anon_sym_u_SQUOTE] = ACTIONS(936), + [anon_sym_U_SQUOTE] = ACTIONS(936), + [anon_sym_u8_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_L_DQUOTE] = ACTIONS(936), + [anon_sym_u_DQUOTE] = ACTIONS(936), + [anon_sym_U_DQUOTE] = ACTIONS(936), + [anon_sym_u8_DQUOTE] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_null] = ACTIONS(934), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [aux_sym_preproc_else_token1] = ACTIONS(944), - [aux_sym_preproc_elif_token1] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [sym_identifier] = ACTIONS(938), + [aux_sym_preproc_include_token1] = ACTIONS(938), + [aux_sym_preproc_def_token1] = ACTIONS(938), + [aux_sym_preproc_if_token1] = ACTIONS(938), + [aux_sym_preproc_if_token2] = ACTIONS(938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(938), + [aux_sym_preproc_else_token1] = ACTIONS(938), + [aux_sym_preproc_elif_token1] = ACTIONS(938), + [sym_preproc_directive] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(940), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_typedef] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym___attribute__] = ACTIONS(938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(940), + [anon_sym___declspec] = ACTIONS(938), + [anon_sym___cdecl] = ACTIONS(938), + [anon_sym___clrcall] = ACTIONS(938), + [anon_sym___stdcall] = ACTIONS(938), + [anon_sym___fastcall] = ACTIONS(938), + [anon_sym___thiscall] = ACTIONS(938), + [anon_sym___vectorcall] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_static] = ACTIONS(938), + [anon_sym_auto] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_inline] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_volatile] = ACTIONS(938), + [anon_sym_restrict] = ACTIONS(938), + [anon_sym___restrict__] = ACTIONS(938), + [anon_sym__Atomic] = ACTIONS(938), + [anon_sym__Noreturn] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(938), + [anon_sym_unsigned] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), + [sym_primitive_type] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_case] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_goto] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_sizeof] = ACTIONS(938), + [anon_sym_offsetof] = ACTIONS(938), + [anon_sym__Generic] = ACTIONS(938), + [sym_number_literal] = ACTIONS(940), + [anon_sym_L_SQUOTE] = ACTIONS(940), + [anon_sym_u_SQUOTE] = ACTIONS(940), + [anon_sym_U_SQUOTE] = ACTIONS(940), + [anon_sym_u8_SQUOTE] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(940), + [anon_sym_L_DQUOTE] = ACTIONS(940), + [anon_sym_u_DQUOTE] = ACTIONS(940), + [anon_sym_U_DQUOTE] = ACTIONS(940), + [anon_sym_u8_DQUOTE] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym_true] = ACTIONS(938), + [sym_false] = ACTIONS(938), + [sym_null] = ACTIONS(938), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [aux_sym_preproc_else_token1] = ACTIONS(940), - [aux_sym_preproc_elif_token1] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [aux_sym_preproc_include_token1] = ACTIONS(942), + [aux_sym_preproc_def_token1] = ACTIONS(942), + [aux_sym_preproc_if_token1] = ACTIONS(942), + [aux_sym_preproc_if_token2] = ACTIONS(942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(942), + [aux_sym_preproc_else_token1] = ACTIONS(942), + [aux_sym_preproc_elif_token1] = ACTIONS(942), + [sym_preproc_directive] = ACTIONS(942), + [anon_sym_LPAREN2] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_typedef] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(944), + [anon_sym___declspec] = ACTIONS(942), + [anon_sym___cdecl] = ACTIONS(942), + [anon_sym___clrcall] = ACTIONS(942), + [anon_sym___stdcall] = ACTIONS(942), + [anon_sym___fastcall] = ACTIONS(942), + [anon_sym___thiscall] = ACTIONS(942), + [anon_sym___vectorcall] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_static] = ACTIONS(942), + [anon_sym_auto] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_restrict] = ACTIONS(942), + [anon_sym___restrict__] = ACTIONS(942), + [anon_sym__Atomic] = ACTIONS(942), + [anon_sym__Noreturn] = ACTIONS(942), + [anon_sym_signed] = ACTIONS(942), + [anon_sym_unsigned] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [sym_primitive_type] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_goto] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_sizeof] = ACTIONS(942), + [anon_sym_offsetof] = ACTIONS(942), + [anon_sym__Generic] = ACTIONS(942), + [sym_number_literal] = ACTIONS(944), + [anon_sym_L_SQUOTE] = ACTIONS(944), + [anon_sym_u_SQUOTE] = ACTIONS(944), + [anon_sym_U_SQUOTE] = ACTIONS(944), + [anon_sym_u8_SQUOTE] = ACTIONS(944), + [anon_sym_SQUOTE] = ACTIONS(944), + [anon_sym_L_DQUOTE] = ACTIONS(944), + [anon_sym_u_DQUOTE] = ACTIONS(944), + [anon_sym_U_DQUOTE] = ACTIONS(944), + [anon_sym_u8_DQUOTE] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_null] = ACTIONS(942), [sym_comment] = ACTIONS(3), }, [79] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [aux_sym_preproc_else_token1] = ACTIONS(948), - [aux_sym_preproc_elif_token1] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [sym_identifier] = ACTIONS(946), + [aux_sym_preproc_include_token1] = ACTIONS(946), + [aux_sym_preproc_def_token1] = ACTIONS(946), + [aux_sym_preproc_if_token1] = ACTIONS(946), + [aux_sym_preproc_if_token2] = ACTIONS(946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(946), + [aux_sym_preproc_else_token1] = ACTIONS(946), + [aux_sym_preproc_elif_token1] = ACTIONS(946), + [sym_preproc_directive] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_typedef] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(948), + [anon_sym___declspec] = ACTIONS(946), + [anon_sym___cdecl] = ACTIONS(946), + [anon_sym___clrcall] = ACTIONS(946), + [anon_sym___stdcall] = ACTIONS(946), + [anon_sym___fastcall] = ACTIONS(946), + [anon_sym___thiscall] = ACTIONS(946), + [anon_sym___vectorcall] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_restrict] = ACTIONS(946), + [anon_sym___restrict__] = ACTIONS(946), + [anon_sym__Atomic] = ACTIONS(946), + [anon_sym__Noreturn] = ACTIONS(946), + [anon_sym_signed] = ACTIONS(946), + [anon_sym_unsigned] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [sym_primitive_type] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_union] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_goto] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_sizeof] = ACTIONS(946), + [anon_sym_offsetof] = ACTIONS(946), + [anon_sym__Generic] = ACTIONS(946), + [sym_number_literal] = ACTIONS(948), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(948), + [anon_sym_u_DQUOTE] = ACTIONS(948), + [anon_sym_U_DQUOTE] = ACTIONS(948), + [anon_sym_u8_DQUOTE] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_null] = ACTIONS(946), [sym_comment] = ACTIONS(3), }, [80] = { @@ -24105,88 +24225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [94] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [aux_sym_preproc_else_token1] = ACTIONS(906), - [aux_sym_preproc_elif_token1] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_offsetof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [95] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -24268,7 +24306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [96] = { + [95] = { [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), [aux_sym_preproc_def_token1] = ACTIONS(1012), @@ -24350,7 +24388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [97] = { + [96] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), @@ -24432,7 +24470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [98] = { + [97] = { [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), @@ -24514,7 +24552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [99] = { + [98] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -24596,7 +24634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [100] = { + [99] = { [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), @@ -24678,7 +24716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [101] = { + [100] = { [sym_identifier] = ACTIONS(1032), [aux_sym_preproc_include_token1] = ACTIONS(1032), [aux_sym_preproc_def_token1] = ACTIONS(1032), @@ -24760,7 +24798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [102] = { + [101] = { [sym_identifier] = ACTIONS(1036), [aux_sym_preproc_include_token1] = ACTIONS(1036), [aux_sym_preproc_def_token1] = ACTIONS(1036), @@ -24842,6 +24880,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, + [102] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [aux_sym_preproc_else_token1] = ACTIONS(1020), + [aux_sym_preproc_elif_token1] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, [103] = { [sym_identifier] = ACTIONS(1040), [aux_sym_preproc_include_token1] = ACTIONS(1040), @@ -24925,249 +25045,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [104] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [aux_sym_preproc_else_token1] = ACTIONS(1044), - [aux_sym_preproc_elif_token1] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), + [sym__expression] = STATE(648), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(589), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(589), + [sym_call_expression] = STATE(589), + [sym_field_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(589), + [sym_initializer_list] = STATE(591), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_identifier] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(1044), [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [105] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [aux_sym_preproc_else_token1] = ACTIONS(1048), - [aux_sym_preproc_elif_token1] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [106] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [aux_sym_preproc_else_token1] = ACTIONS(1052), - [aux_sym_preproc_elif_token1] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1054), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DASH_GT] = ACTIONS(888), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [107] = { + [105] = { [sym_identifier] = ACTIONS(1056), [aux_sym_preproc_include_token1] = ACTIONS(1056), [aux_sym_preproc_def_token1] = ACTIONS(1056), @@ -25248,7 +25206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [108] = { + [106] = { [sym_identifier] = ACTIONS(1060), [aux_sym_preproc_include_token1] = ACTIONS(1060), [aux_sym_preproc_def_token1] = ACTIONS(1060), @@ -25329,7 +25287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [109] = { + [107] = { [sym_identifier] = ACTIONS(1064), [aux_sym_preproc_include_token1] = ACTIONS(1064), [aux_sym_preproc_def_token1] = ACTIONS(1064), @@ -25410,7 +25368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [110] = { + [108] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -25491,7 +25449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [111] = { + [109] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -25572,7 +25530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [112] = { + [110] = { [sym_identifier] = ACTIONS(1076), [aux_sym_preproc_include_token1] = ACTIONS(1076), [aux_sym_preproc_def_token1] = ACTIONS(1076), @@ -25653,7 +25611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [113] = { + [111] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), @@ -25734,7 +25692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [114] = { + [112] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -25815,7 +25773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [115] = { + [113] = { [sym_identifier] = ACTIONS(1088), [aux_sym_preproc_include_token1] = ACTIONS(1088), [aux_sym_preproc_def_token1] = ACTIONS(1088), @@ -25896,7 +25854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [116] = { + [114] = { [sym_identifier] = ACTIONS(1092), [aux_sym_preproc_include_token1] = ACTIONS(1092), [aux_sym_preproc_def_token1] = ACTIONS(1092), @@ -25977,7 +25935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1092), [sym_comment] = ACTIONS(3), }, - [117] = { + [115] = { [sym_identifier] = ACTIONS(1096), [aux_sym_preproc_include_token1] = ACTIONS(1096), [aux_sym_preproc_def_token1] = ACTIONS(1096), @@ -26058,7 +26016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [118] = { + [116] = { [sym_identifier] = ACTIONS(1100), [aux_sym_preproc_include_token1] = ACTIONS(1100), [aux_sym_preproc_def_token1] = ACTIONS(1100), @@ -26139,7 +26097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [119] = { + [117] = { [sym_identifier] = ACTIONS(1104), [aux_sym_preproc_include_token1] = ACTIONS(1104), [aux_sym_preproc_def_token1] = ACTIONS(1104), @@ -26220,7 +26178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [120] = { + [118] = { [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -26301,7 +26259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [121] = { + [119] = { [sym_identifier] = ACTIONS(1112), [aux_sym_preproc_include_token1] = ACTIONS(1112), [aux_sym_preproc_def_token1] = ACTIONS(1112), @@ -26382,7 +26340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [122] = { + [120] = { [sym_identifier] = ACTIONS(1116), [aux_sym_preproc_include_token1] = ACTIONS(1116), [aux_sym_preproc_def_token1] = ACTIONS(1116), @@ -26463,85 +26421,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym__expression] = STATE(636), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(602), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(602), - [sym_call_expression] = STATE(602), - [sym_field_expression] = STATE(602), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(602), - [sym_initializer_list] = STATE(589), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_identifier] = ACTIONS(886), - [anon_sym_LPAREN2] = ACTIONS(1120), + [121] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [aux_sym_preproc_else_token1] = ACTIONS(1120), + [aux_sym_preproc_elif_token1] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [122] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [aux_sym_preproc_else_token1] = ACTIONS(1124), + [aux_sym_preproc_elif_token1] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(888), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(888), - [anon_sym_BANG_EQ] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_RBRACK] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_QMARK] = ACTIONS(888), - [anon_sym_STAR_EQ] = ACTIONS(888), - [anon_sym_SLASH_EQ] = ACTIONS(888), - [anon_sym_PERCENT_EQ] = ACTIONS(888), - [anon_sym_PLUS_EQ] = ACTIONS(888), - [anon_sym_DASH_EQ] = ACTIONS(888), - [anon_sym_LT_LT_EQ] = ACTIONS(888), - [anon_sym_GT_GT_EQ] = ACTIONS(888), - [anon_sym_AMP_EQ] = ACTIONS(888), - [anon_sym_CARET_EQ] = ACTIONS(888), - [anon_sym_PIPE_EQ] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_DASH_GT] = ACTIONS(888), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [123] = { + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token2] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [aux_sym_preproc_else_token1] = ACTIONS(1128), + [aux_sym_preproc_elif_token1] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), + [anon_sym___declspec] = ACTIONS(1128), + [anon_sym___cdecl] = ACTIONS(1128), + [anon_sym___clrcall] = ACTIONS(1128), + [anon_sym___stdcall] = ACTIONS(1128), + [anon_sym___fastcall] = ACTIONS(1128), + [anon_sym___thiscall] = ACTIONS(1128), + [anon_sym___vectorcall] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [anon_sym___restrict__] = ACTIONS(1128), + [anon_sym__Atomic] = ACTIONS(1128), + [anon_sym__Noreturn] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_offsetof] = ACTIONS(1128), + [anon_sym__Generic] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym_u_SQUOTE] = ACTIONS(1130), + [anon_sym_U_SQUOTE] = ACTIONS(1130), + [anon_sym_u8_SQUOTE] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_u_DQUOTE] = ACTIONS(1130), + [anon_sym_U_DQUOTE] = ACTIONS(1130), + [anon_sym_u8_DQUOTE] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), [sym_comment] = ACTIONS(3), }, [124] = { @@ -26707,283 +26827,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - }, - [127] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [128] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [129] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1142), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(146), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_case_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26991,20 +26871,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27026,44 +26906,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [130] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(1475), - [sym_attributed_statement] = STATE(1475), - [sym_labeled_statement] = STATE(1475), - [sym_expression_statement] = STATE(1475), - [sym_if_statement] = STATE(1475), - [sym_switch_statement] = STATE(1475), - [sym_case_statement] = STATE(1475), - [sym_while_statement] = STATE(1475), - [sym_do_statement] = STATE(1475), - [sym_for_statement] = STATE(1475), - [sym_return_statement] = STATE(1475), - [sym_break_statement] = STATE(1475), - [sym_continue_statement] = STATE(1475), - [sym_goto_statement] = STATE(1475), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [127] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(273), + [sym_attributed_statement] = STATE(273), + [sym_labeled_statement] = STATE(273), + [sym_expression_statement] = STATE(273), + [sym_if_statement] = STATE(273), + [sym_switch_statement] = STATE(273), + [sym_case_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_do_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_return_statement] = STATE(273), + [sym_break_statement] = STATE(273), + [sym_continue_statement] = STATE(273), + [sym_goto_statement] = STATE(273), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27072,7 +26952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -27106,44 +26986,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(1463), - [sym_attributed_statement] = STATE(1463), - [sym_labeled_statement] = STATE(1463), - [sym_expression_statement] = STATE(1463), - [sym_if_statement] = STATE(1463), - [sym_switch_statement] = STATE(1463), - [sym_case_statement] = STATE(1463), - [sym_while_statement] = STATE(1463), - [sym_do_statement] = STATE(1463), - [sym_for_statement] = STATE(1463), - [sym_return_statement] = STATE(1463), - [sym_break_statement] = STATE(1463), - [sym_continue_statement] = STATE(1463), - [sym_goto_statement] = STATE(1463), + [128] = { + [sym_identifier] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(920), + [anon_sym___declspec] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [anon_sym___restrict__] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [anon_sym__Noreturn] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_offsetof] = ACTIONS(918), + [anon_sym__Generic] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_L_SQUOTE] = ACTIONS(920), + [anon_sym_u_SQUOTE] = ACTIONS(920), + [anon_sym_U_SQUOTE] = ACTIONS(920), + [anon_sym_u8_SQUOTE] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_L_DQUOTE] = ACTIONS(920), + [anon_sym_u_DQUOTE] = ACTIONS(920), + [anon_sym_U_DQUOTE] = ACTIONS(920), + [anon_sym_u8_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + }, + [129] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(177), + [sym_attributed_statement] = STATE(177), + [sym_labeled_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_switch_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_do_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym_return_statement] = STATE(177), + [sym_break_statement] = STATE(177), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(177), [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27151,20 +27111,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27186,204 +27146,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [132] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [134] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [130] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(224), + [sym_attributed_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27391,20 +27191,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27426,44 +27226,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(172), - [sym_attributed_statement] = STATE(172), - [sym_labeled_statement] = STATE(172), - [sym_expression_statement] = STATE(172), - [sym_if_statement] = STATE(172), - [sym_switch_statement] = STATE(172), - [sym_case_statement] = STATE(172), - [sym_while_statement] = STATE(172), - [sym_do_statement] = STATE(172), - [sym_for_statement] = STATE(172), - [sym_return_statement] = STATE(172), - [sym_break_statement] = STATE(172), - [sym_continue_statement] = STATE(172), - [sym_goto_statement] = STATE(172), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [131] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [132] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27471,20 +27351,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27506,172 +27386,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym___restrict__] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym__Noreturn] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [anon_sym_offsetof] = ACTIONS(972), - [anon_sym__Generic] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [137] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [138] = { + [133] = { + [ts_builtin_sym_end] = ACTIONS(1038), [sym_identifier] = ACTIONS(1036), [aux_sym_preproc_include_token1] = ACTIONS(1036), [aux_sym_preproc_def_token1] = ACTIONS(1036), [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), [sym_preproc_directive] = ACTIONS(1036), @@ -27746,44 +27466,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(79), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_case_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [134] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27791,20 +27591,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27826,44 +27626,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(80), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_case_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [136] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_case_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27871,20 +27831,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27906,44 +27866,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(177), - [sym_attributed_statement] = STATE(177), - [sym_labeled_statement] = STATE(177), - [sym_expression_statement] = STATE(177), - [sym_if_statement] = STATE(177), - [sym_switch_statement] = STATE(177), - [sym_case_statement] = STATE(177), - [sym_while_statement] = STATE(177), - [sym_do_statement] = STATE(177), - [sym_for_statement] = STATE(177), - [sym_return_statement] = STATE(177), - [sym_break_statement] = STATE(177), - [sym_continue_statement] = STATE(177), - [sym_goto_statement] = STATE(177), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [139] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(131), + [sym_attributed_statement] = STATE(131), + [sym_labeled_statement] = STATE(131), + [sym_expression_statement] = STATE(131), + [sym_if_statement] = STATE(131), + [sym_switch_statement] = STATE(131), + [sym_case_statement] = STATE(131), + [sym_while_statement] = STATE(131), + [sym_do_statement] = STATE(131), + [sym_for_statement] = STATE(131), + [sym_return_statement] = STATE(131), + [sym_break_statement] = STATE(131), + [sym_continue_statement] = STATE(131), + [sym_goto_statement] = STATE(131), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27951,20 +27911,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27986,44 +27946,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [140] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(134), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_case_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28031,20 +27991,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28066,44 +28026,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(252), - [sym_attributed_statement] = STATE(252), - [sym_labeled_statement] = STATE(252), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(252), - [sym_switch_statement] = STATE(252), - [sym_case_statement] = STATE(252), - [sym_while_statement] = STATE(252), - [sym_do_statement] = STATE(252), - [sym_for_statement] = STATE(252), - [sym_return_statement] = STATE(252), - [sym_break_statement] = STATE(252), - [sym_continue_statement] = STATE(252), - [sym_goto_statement] = STATE(252), + [141] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(136), + [sym_attributed_statement] = STATE(136), + [sym_labeled_statement] = STATE(136), + [sym_expression_statement] = STATE(136), + [sym_if_statement] = STATE(136), + [sym_switch_statement] = STATE(136), + [sym_case_statement] = STATE(136), + [sym_while_statement] = STATE(136), + [sym_do_statement] = STATE(136), + [sym_for_statement] = STATE(136), + [sym_return_statement] = STATE(136), + [sym_break_statement] = STATE(136), + [sym_continue_statement] = STATE(136), + [sym_goto_statement] = STATE(136), [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28111,20 +28151,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28146,204 +28186,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [146] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(82), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_case_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [143] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(137), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_case_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28351,20 +28231,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28386,328 +28266,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [144] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym___restrict__] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym__Noreturn] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), + [anon_sym__Generic] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(84), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_case_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [145] = { + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(922), + [aux_sym_preproc_def_token1] = ACTIONS(922), + [aux_sym_preproc_if_token1] = ACTIONS(922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_LPAREN2] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym___attribute__] = ACTIONS(922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(924), + [anon_sym___declspec] = ACTIONS(922), + [anon_sym___cdecl] = ACTIONS(922), + [anon_sym___clrcall] = ACTIONS(922), + [anon_sym___stdcall] = ACTIONS(922), + [anon_sym___fastcall] = ACTIONS(922), + [anon_sym___thiscall] = ACTIONS(922), + [anon_sym___vectorcall] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym___restrict__] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym__Noreturn] = ACTIONS(922), + [anon_sym_signed] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(922), + [anon_sym_offsetof] = ACTIONS(922), + [anon_sym__Generic] = ACTIONS(922), + [sym_number_literal] = ACTIONS(924), + [anon_sym_L_SQUOTE] = ACTIONS(924), + [anon_sym_u_SQUOTE] = ACTIONS(924), + [anon_sym_U_SQUOTE] = ACTIONS(924), + [anon_sym_u8_SQUOTE] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(924), + [anon_sym_L_DQUOTE] = ACTIONS(924), + [anon_sym_u_DQUOTE] = ACTIONS(924), + [anon_sym_U_DQUOTE] = ACTIONS(924), + [anon_sym_u8_DQUOTE] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(924), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), [sym_comment] = ACTIONS(3), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [146] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [151] = { - [sym_attribute_declaration] = STATE(151), + [147] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_attribute_declaration] = STATE(207), [sym_compound_statement] = STATE(148), [sym_attributed_statement] = STATE(148), [sym_labeled_statement] = STATE(148), @@ -28722,108 +28762,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(148), [sym_continue_statement] = STATE(148), [sym_goto_statement] = STATE(148), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [sym_null] = ACTIONS(1228), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [152] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(69), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_case_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [151] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(179), + [sym_attributed_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_switch_statement] = STATE(179), + [sym_case_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_goto_statement] = STATE(179), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28831,20 +28871,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28866,44 +28906,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [153] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(86), - [sym_attributed_statement] = STATE(86), - [sym_labeled_statement] = STATE(86), - [sym_expression_statement] = STATE(86), - [sym_if_statement] = STATE(86), - [sym_switch_statement] = STATE(86), - [sym_case_statement] = STATE(86), - [sym_while_statement] = STATE(86), - [sym_do_statement] = STATE(86), - [sym_for_statement] = STATE(86), - [sym_return_statement] = STATE(86), - [sym_break_statement] = STATE(86), - [sym_continue_statement] = STATE(86), - [sym_goto_statement] = STATE(86), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [152] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(141), + [sym_attributed_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_case_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28911,20 +28951,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28946,284 +28986,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [sym_attribute_declaration] = STATE(155), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), + [153] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(145), + [sym_attributed_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_case_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [sym_null] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(89), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29231,20 +29031,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29266,2204 +29066,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), + [154] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(155), [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1181), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [156] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_offsetof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(184), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_offsetof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(91), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(95), - [sym_attributed_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_case_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym___restrict__] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym__Noreturn] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [anon_sym_offsetof] = ACTIONS(972), - [anon_sym__Generic] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(236), - [sym_attributed_statement] = STATE(236), - [sym_labeled_statement] = STATE(236), - [sym_expression_statement] = STATE(236), - [sym_if_statement] = STATE(236), - [sym_switch_statement] = STATE(236), - [sym_case_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(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(231), - [sym_attributed_statement] = STATE(231), - [sym_labeled_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_case_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_goto_statement] = STATE(231), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [157] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [158] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [159] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(192), - [sym_attributed_statement] = STATE(192), - [sym_labeled_statement] = STATE(192), - [sym_expression_statement] = STATE(192), - [sym_if_statement] = STATE(192), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(192), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(192), - [sym_for_statement] = STATE(192), - [sym_return_statement] = STATE(192), - [sym_break_statement] = STATE(192), - [sym_continue_statement] = STATE(192), - [sym_goto_statement] = STATE(192), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [160] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(197), - [sym_attributed_statement] = STATE(197), - [sym_labeled_statement] = STATE(197), - [sym_expression_statement] = STATE(197), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(197), - [sym_case_statement] = STATE(197), - [sym_while_statement] = STATE(197), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(197), - [sym_break_statement] = STATE(197), - [sym_continue_statement] = STATE(197), - [sym_goto_statement] = STATE(197), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [161] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(98), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [162] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym___restrict__] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym__Noreturn] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(976), + [anon_sym__Generic] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(998), - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [163] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_if_token2] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym___restrict__] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym__Noreturn] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), + [anon_sym__Generic] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(292), - [sym_attributed_statement] = STATE(292), - [sym_labeled_statement] = STATE(292), - [sym_expression_statement] = STATE(292), - [sym_if_statement] = STATE(292), - [sym_switch_statement] = STATE(292), - [sym_case_statement] = STATE(292), - [sym_while_statement] = STATE(292), - [sym_do_statement] = STATE(292), - [sym_for_statement] = STATE(292), - [sym_return_statement] = STATE(292), - [sym_break_statement] = STATE(292), - [sym_continue_statement] = STATE(292), - [sym_goto_statement] = STATE(292), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [164] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(158), + [sym_attributed_statement] = STATE(158), + [sym_labeled_statement] = STATE(158), + [sym_expression_statement] = STATE(158), + [sym_if_statement] = STATE(158), + [sym_switch_statement] = STATE(158), + [sym_case_statement] = STATE(158), + [sym_while_statement] = STATE(158), + [sym_do_statement] = STATE(158), + [sym_for_statement] = STATE(158), + [sym_return_statement] = STATE(158), + [sym_break_statement] = STATE(158), + [sym_continue_statement] = STATE(158), + [sym_goto_statement] = STATE(158), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31471,20 +29911,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31506,43 +29946,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(199), - [sym_attributed_statement] = STATE(199), - [sym_labeled_statement] = STATE(199), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(199), - [sym_switch_statement] = STATE(199), - [sym_case_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_do_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(199), - [sym_continue_statement] = STATE(199), - [sym_goto_statement] = STATE(199), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), + [165] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -31551,20 +29991,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31586,44 +30026,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(200), - [sym_attributed_statement] = STATE(200), - [sym_labeled_statement] = STATE(200), - [sym_expression_statement] = STATE(200), - [sym_if_statement] = STATE(200), - [sym_switch_statement] = STATE(200), - [sym_case_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_do_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_return_statement] = STATE(200), - [sym_break_statement] = STATE(200), - [sym_continue_statement] = STATE(200), - [sym_goto_statement] = STATE(200), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [166] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1476), + [sym_attributed_statement] = STATE(1476), + [sym_labeled_statement] = STATE(1476), + [sym_expression_statement] = STATE(1476), + [sym_if_statement] = STATE(1476), + [sym_switch_statement] = STATE(1476), + [sym_case_statement] = STATE(1476), + [sym_while_statement] = STATE(1476), + [sym_do_statement] = STATE(1476), + [sym_for_statement] = STATE(1476), + [sym_return_statement] = STATE(1476), + [sym_break_statement] = STATE(1476), + [sym_continue_statement] = STATE(1476), + [sym_goto_statement] = STATE(1476), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31632,7 +30072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -31666,44 +30106,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(202), - [sym_attributed_statement] = STATE(202), - [sym_labeled_statement] = STATE(202), - [sym_expression_statement] = STATE(202), - [sym_if_statement] = STATE(202), - [sym_switch_statement] = STATE(202), - [sym_case_statement] = STATE(202), - [sym_while_statement] = STATE(202), - [sym_do_statement] = STATE(202), - [sym_for_statement] = STATE(202), - [sym_return_statement] = STATE(202), - [sym_break_statement] = STATE(202), - [sym_continue_statement] = STATE(202), - [sym_goto_statement] = STATE(202), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [167] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(87), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31711,20 +30151,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31746,44 +30186,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(1441), - [sym_attributed_statement] = STATE(1441), - [sym_labeled_statement] = STATE(1441), - [sym_expression_statement] = STATE(1441), - [sym_if_statement] = STATE(1441), - [sym_switch_statement] = STATE(1441), - [sym_case_statement] = STATE(1441), - [sym_while_statement] = STATE(1441), - [sym_do_statement] = STATE(1441), - [sym_for_statement] = STATE(1441), - [sym_return_statement] = STATE(1441), - [sym_break_statement] = STATE(1441), - [sym_continue_statement] = STATE(1441), - [sym_goto_statement] = STATE(1441), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [168] = { + [sym_identifier] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(920), + [anon_sym___declspec] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [anon_sym___restrict__] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [anon_sym__Noreturn] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_offsetof] = ACTIONS(918), + [anon_sym__Generic] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_L_SQUOTE] = ACTIONS(920), + [anon_sym_u_SQUOTE] = ACTIONS(920), + [anon_sym_U_SQUOTE] = ACTIONS(920), + [anon_sym_u8_SQUOTE] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_L_DQUOTE] = ACTIONS(920), + [anon_sym_u_DQUOTE] = ACTIONS(920), + [anon_sym_U_DQUOTE] = ACTIONS(920), + [anon_sym_u8_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31791,20 +30311,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31826,44 +30346,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [190] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(156), - [sym_attributed_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [170] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym___restrict__] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym__Noreturn] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), + [anon_sym__Generic] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1464), + [sym_attributed_statement] = STATE(1464), + [sym_labeled_statement] = STATE(1464), + [sym_expression_statement] = STATE(1464), + [sym_if_statement] = STATE(1464), + [sym_switch_statement] = STATE(1464), + [sym_case_statement] = STATE(1464), + [sym_while_statement] = STATE(1464), + [sym_do_statement] = STATE(1464), + [sym_for_statement] = STATE(1464), + [sym_return_statement] = STATE(1464), + [sym_break_statement] = STATE(1464), + [sym_continue_statement] = STATE(1464), + [sym_goto_statement] = STATE(1464), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31872,7 +30472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -31887,667 +30487,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(207), - [sym_attributed_statement] = STATE(207), - [sym_labeled_statement] = STATE(207), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(207), - [sym_switch_statement] = STATE(207), - [sym_case_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_do_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_return_statement] = STATE(207), - [sym_break_statement] = STATE(207), - [sym_continue_statement] = STATE(207), - [sym_goto_statement] = STATE(207), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_offsetof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [172] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(162), + [sym_attributed_statement] = STATE(162), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_offsetof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [173] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [174] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [175] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(211), - [sym_attributed_statement] = STATE(211), - [sym_labeled_statement] = STATE(211), - [sym_expression_statement] = STATE(211), - [sym_if_statement] = STATE(211), - [sym_switch_statement] = STATE(211), - [sym_case_statement] = STATE(211), - [sym_while_statement] = STATE(211), - [sym_do_statement] = STATE(211), - [sym_for_statement] = STATE(211), - [sym_return_statement] = STATE(211), - [sym_break_statement] = STATE(211), - [sym_continue_statement] = STATE(211), - [sym_goto_statement] = STATE(211), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [176] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(978), + [177] = { [sym_identifier] = ACTIONS(976), [aux_sym_preproc_include_token1] = ACTIONS(976), [aux_sym_preproc_def_token1] = ACTIONS(976), @@ -32575,6 +30934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(976), [anon_sym___vectorcall] = ACTIONS(976), [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), [anon_sym_static] = ACTIONS(976), [anon_sym_auto] = ACTIONS(976), [anon_sym_register] = ACTIONS(976), @@ -32626,124 +30986,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym___restrict__] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym__Noreturn] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [anon_sym_offsetof] = ACTIONS(910), - [anon_sym__Generic] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [178] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(157), + [sym_attributed_statement] = STATE(157), + [sym_labeled_statement] = STATE(157), + [sym_expression_statement] = STATE(157), + [sym_if_statement] = STATE(157), + [sym_switch_statement] = STATE(157), + [sym_case_statement] = STATE(157), + [sym_while_statement] = STATE(157), + [sym_do_statement] = STATE(157), + [sym_for_statement] = STATE(157), + [sym_return_statement] = STATE(157), + [sym_break_statement] = STATE(157), + [sym_continue_statement] = STATE(157), + [sym_goto_statement] = STATE(157), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [181] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(163), + [sym_attributed_statement] = STATE(163), + [sym_labeled_statement] = STATE(163), + [sym_expression_statement] = STATE(163), + [sym_if_statement] = STATE(163), + [sym_switch_statement] = STATE(163), + [sym_case_statement] = STATE(163), + [sym_while_statement] = STATE(163), + [sym_do_statement] = STATE(163), + [sym_for_statement] = STATE(163), + [sym_return_statement] = STATE(163), + [sym_break_statement] = STATE(163), + [sym_continue_statement] = STATE(163), + [sym_goto_statement] = STATE(163), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [182] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(193), + [sym_attributed_statement] = STATE(193), + [sym_labeled_statement] = STATE(193), + [sym_expression_statement] = STATE(193), + [sym_if_statement] = STATE(193), + [sym_switch_statement] = STATE(193), + [sym_case_statement] = STATE(193), + [sym_while_statement] = STATE(193), + [sym_do_statement] = STATE(193), + [sym_for_statement] = STATE(193), + [sym_return_statement] = STATE(193), + [sym_break_statement] = STATE(193), + [sym_continue_statement] = STATE(193), + [sym_goto_statement] = STATE(193), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(213), - [sym_attributed_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_case_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_goto_statement] = STATE(213), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [184] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [185] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(253), + [sym_attributed_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32752,7 +31592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -32786,172 +31626,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [186] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [187] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [204] = { + [188] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token2] = ACTIONS(1024), [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), [sym_preproc_directive] = ACTIONS(1024), @@ -32975,6 +31814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1024), [anon_sym___vectorcall] = ACTIONS(1024), [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), [anon_sym_static] = ACTIONS(1024), [anon_sym_auto] = ACTIONS(1024), [anon_sym_register] = ACTIONS(1024), @@ -33026,44 +31866,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(126), - [sym_attributed_statement] = STATE(126), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(126), - [sym_case_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(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [189] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(168), + [sym_attributed_statement] = STATE(168), + [sym_labeled_statement] = STATE(168), + [sym_expression_statement] = STATE(168), + [sym_if_statement] = STATE(168), + [sym_switch_statement] = STATE(168), + [sym_case_statement] = STATE(168), + [sym_while_statement] = STATE(168), + [sym_do_statement] = STATE(168), + [sym_for_statement] = STATE(168), + [sym_return_statement] = STATE(168), + [sym_break_statement] = STATE(168), + [sym_continue_statement] = STATE(168), + [sym_goto_statement] = STATE(168), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [190] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(173), + [sym_attributed_statement] = STATE(173), + [sym_labeled_statement] = STATE(173), + [sym_expression_statement] = STATE(173), + [sym_if_statement] = STATE(173), + [sym_switch_statement] = STATE(173), + [sym_case_statement] = STATE(173), + [sym_while_statement] = STATE(173), + [sym_do_statement] = STATE(173), + [sym_for_statement] = STATE(173), + [sym_return_statement] = STATE(173), + [sym_break_statement] = STATE(173), + [sym_continue_statement] = STATE(173), + [sym_goto_statement] = STATE(173), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(174), + [sym_attributed_statement] = STATE(174), + [sym_labeled_statement] = STATE(174), + [sym_expression_statement] = STATE(174), + [sym_if_statement] = STATE(174), + [sym_switch_statement] = STATE(174), + [sym_case_statement] = STATE(174), + [sym_while_statement] = STATE(174), + [sym_do_statement] = STATE(174), + [sym_for_statement] = STATE(174), + [sym_return_statement] = STATE(174), + [sym_break_statement] = STATE(174), + [sym_continue_statement] = STATE(174), + [sym_goto_statement] = STATE(174), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33071,20 +32071,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33106,43 +32106,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(215), - [sym_attributed_statement] = STATE(215), - [sym_labeled_statement] = STATE(215), - [sym_expression_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_switch_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_do_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_return_statement] = STATE(215), - [sym_break_statement] = STATE(215), - [sym_continue_statement] = STATE(215), - [sym_goto_statement] = STATE(215), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), + [192] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(186), + [sym_attributed_statement] = STATE(186), + [sym_labeled_statement] = STATE(186), + [sym_expression_statement] = STATE(186), + [sym_if_statement] = STATE(186), + [sym_switch_statement] = STATE(186), + [sym_case_statement] = STATE(186), + [sym_while_statement] = STATE(186), + [sym_do_statement] = STATE(186), + [sym_for_statement] = STATE(186), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(186), + [sym_continue_statement] = STATE(186), + [sym_goto_statement] = STATE(186), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33151,20 +32311,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33186,204 +32346,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [195] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [196] = { + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [197] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33391,20 +32551,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33426,44 +32586,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(224), - [sym_attributed_statement] = STATE(224), - [sym_labeled_statement] = STATE(224), - [sym_expression_statement] = STATE(224), - [sym_if_statement] = STATE(224), - [sym_switch_statement] = STATE(224), - [sym_case_statement] = STATE(224), - [sym_while_statement] = STATE(224), - [sym_do_statement] = STATE(224), - [sym_for_statement] = STATE(224), - [sym_return_statement] = STATE(224), - [sym_break_statement] = STATE(224), - [sym_continue_statement] = STATE(224), - [sym_goto_statement] = STATE(224), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [198] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(95), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33471,20 +32631,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33506,124 +32666,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(221), - [sym_attributed_statement] = STATE(221), - [sym_labeled_statement] = STATE(221), - [sym_expression_statement] = STATE(221), - [sym_if_statement] = STATE(221), - [sym_switch_statement] = STATE(221), - [sym_case_statement] = STATE(221), - [sym_while_statement] = STATE(221), - [sym_do_statement] = STATE(221), - [sym_for_statement] = STATE(221), - [sym_return_statement] = STATE(221), - [sym_break_statement] = STATE(221), - [sym_continue_statement] = STATE(221), - [sym_goto_statement] = STATE(221), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [199] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33631,20 +32711,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33666,12 +32746,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(958), + [200] = { + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(922), + [aux_sym_preproc_def_token1] = ACTIONS(922), + [aux_sym_preproc_if_token1] = ACTIONS(922), + [aux_sym_preproc_if_token2] = ACTIONS(922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_LPAREN2] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym___attribute__] = ACTIONS(922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(924), + [anon_sym___declspec] = ACTIONS(922), + [anon_sym___cdecl] = ACTIONS(922), + [anon_sym___clrcall] = ACTIONS(922), + [anon_sym___stdcall] = ACTIONS(922), + [anon_sym___fastcall] = ACTIONS(922), + [anon_sym___thiscall] = ACTIONS(922), + [anon_sym___vectorcall] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym___restrict__] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym__Noreturn] = ACTIONS(922), + [anon_sym_signed] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(922), + [anon_sym_offsetof] = ACTIONS(922), + [anon_sym__Generic] = ACTIONS(922), + [sym_number_literal] = ACTIONS(924), + [anon_sym_L_SQUOTE] = ACTIONS(924), + [anon_sym_u_SQUOTE] = ACTIONS(924), + [anon_sym_U_SQUOTE] = ACTIONS(924), + [anon_sym_u8_SQUOTE] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(924), + [anon_sym_L_DQUOTE] = ACTIONS(924), + [anon_sym_u_DQUOTE] = ACTIONS(924), + [anon_sym_U_DQUOTE] = ACTIONS(924), + [anon_sym_u8_DQUOTE] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(924), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), + [sym_comment] = ACTIONS(3), + }, + [201] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [202] = { [sym_identifier] = ACTIONS(956), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), [aux_sym_preproc_ifdef_token1] = ACTIONS(956), [aux_sym_preproc_ifdef_token2] = ACTIONS(956), [sym_preproc_directive] = ACTIONS(956), @@ -33746,7 +32986,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [214] = { + [203] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(69), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [204] = { [ts_builtin_sym_end] = ACTIONS(966), [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), @@ -33826,444 +33146,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(227), - [sym_attributed_statement] = STATE(227), - [sym_labeled_statement] = STATE(227), - [sym_expression_statement] = STATE(227), - [sym_if_statement] = STATE(227), - [sym_switch_statement] = STATE(227), - [sym_case_statement] = STATE(227), - [sym_while_statement] = STATE(227), - [sym_do_statement] = STATE(227), - [sym_for_statement] = STATE(227), - [sym_return_statement] = STATE(227), - [sym_break_statement] = STATE(227), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(227), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [sym_null] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(230), - [sym_attributed_statement] = STATE(230), - [sym_labeled_statement] = STATE(230), - [sym_expression_statement] = STATE(230), - [sym_if_statement] = STATE(230), - [sym_switch_statement] = STATE(230), - [sym_case_statement] = STATE(230), - [sym_while_statement] = STATE(230), - [sym_do_statement] = STATE(230), - [sym_for_statement] = STATE(230), - [sym_return_statement] = STATE(230), - [sym_break_statement] = STATE(230), - [sym_continue_statement] = STATE(230), - [sym_goto_statement] = STATE(230), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [205] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34271,20 +33191,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34306,124 +33226,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(237), - [sym_attributed_statement] = STATE(237), - [sym_labeled_statement] = STATE(237), - [sym_expression_statement] = STATE(237), - [sym_if_statement] = STATE(237), - [sym_switch_statement] = STATE(237), - [sym_case_statement] = STATE(237), - [sym_while_statement] = STATE(237), - [sym_do_statement] = STATE(237), - [sym_for_statement] = STATE(237), - [sym_return_statement] = STATE(237), - [sym_break_statement] = STATE(237), - [sym_continue_statement] = STATE(237), - [sym_goto_statement] = STATE(237), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [206] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(71), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34431,20 +33271,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34466,44 +33306,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(238), - [sym_attributed_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_case_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(238), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [207] = { + [sym_attribute_declaration] = STATE(277), + [sym_compound_statement] = STATE(276), + [sym_attributed_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34511,20 +33351,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34546,124 +33386,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(75), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_case_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [208] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(192), + [sym_attributed_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34671,20 +33431,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34706,44 +33466,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [209] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(200), + [sym_attributed_statement] = STATE(200), + [sym_labeled_statement] = STATE(200), + [sym_expression_statement] = STATE(200), + [sym_if_statement] = STATE(200), + [sym_switch_statement] = STATE(200), + [sym_case_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_do_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_return_statement] = STATE(200), + [sym_break_statement] = STATE(200), + [sym_continue_statement] = STATE(200), + [sym_goto_statement] = STATE(200), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34751,20 +33511,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34786,124 +33546,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_if_token2] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_attribute_declaration] = STATE(155), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(1146), + [210] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(82), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_case_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34911,20 +33591,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34946,87 +33626,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [229] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(72), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_case_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [211] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + }, + [212] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [213] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(954), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [230] = { + [215] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [216] = { [sym_identifier] = ACTIONS(988), [aux_sym_preproc_include_token1] = ACTIONS(988), [aux_sym_preproc_def_token1] = ACTIONS(988), @@ -35106,8 +34106,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(916), + [217] = { + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(922), + [aux_sym_preproc_def_token1] = ACTIONS(922), + [aux_sym_preproc_if_token1] = ACTIONS(922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(922), + [sym_preproc_directive] = ACTIONS(922), + [anon_sym_LPAREN2] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym___attribute__] = ACTIONS(922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(924), + [anon_sym___declspec] = ACTIONS(922), + [anon_sym___cdecl] = ACTIONS(922), + [anon_sym___clrcall] = ACTIONS(922), + [anon_sym___stdcall] = ACTIONS(922), + [anon_sym___fastcall] = ACTIONS(922), + [anon_sym___thiscall] = ACTIONS(922), + [anon_sym___vectorcall] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_static] = ACTIONS(922), + [anon_sym_auto] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_volatile] = ACTIONS(922), + [anon_sym_restrict] = ACTIONS(922), + [anon_sym___restrict__] = ACTIONS(922), + [anon_sym__Atomic] = ACTIONS(922), + [anon_sym__Noreturn] = ACTIONS(922), + [anon_sym_signed] = ACTIONS(922), + [anon_sym_unsigned] = ACTIONS(922), + [anon_sym_long] = ACTIONS(922), + [anon_sym_short] = ACTIONS(922), + [sym_primitive_type] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_sizeof] = ACTIONS(922), + [anon_sym_offsetof] = ACTIONS(922), + [anon_sym__Generic] = ACTIONS(922), + [sym_number_literal] = ACTIONS(924), + [anon_sym_L_SQUOTE] = ACTIONS(924), + [anon_sym_u_SQUOTE] = ACTIONS(924), + [anon_sym_U_SQUOTE] = ACTIONS(924), + [anon_sym_u8_SQUOTE] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(924), + [anon_sym_L_DQUOTE] = ACTIONS(924), + [anon_sym_u_DQUOTE] = ACTIONS(924), + [anon_sym_U_DQUOTE] = ACTIONS(924), + [anon_sym_u8_DQUOTE] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(924), + [sym_true] = ACTIONS(922), + [sym_false] = ACTIONS(922), + [sym_null] = ACTIONS(922), + [sym_comment] = ACTIONS(3), + }, + [219] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(266), + [sym_attributed_statement] = STATE(266), + [sym_labeled_statement] = STATE(266), + [sym_expression_statement] = STATE(266), + [sym_if_statement] = STATE(266), + [sym_switch_statement] = STATE(266), + [sym_case_statement] = STATE(266), + [sym_while_statement] = STATE(266), + [sym_do_statement] = STATE(266), + [sym_for_statement] = STATE(266), + [sym_return_statement] = STATE(266), + [sym_break_statement] = STATE(266), + [sym_continue_statement] = STATE(266), + [sym_goto_statement] = STATE(266), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [220] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(267), + [sym_attributed_statement] = STATE(267), + [sym_labeled_statement] = STATE(267), + [sym_expression_statement] = STATE(267), + [sym_if_statement] = STATE(267), + [sym_switch_statement] = STATE(267), + [sym_case_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_do_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_return_statement] = STATE(267), + [sym_break_statement] = STATE(267), + [sym_continue_statement] = STATE(267), + [sym_goto_statement] = STATE(267), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [223] = { [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -35135,6 +34614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(914), [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_static] = ACTIONS(914), [anon_sym_auto] = ACTIONS(914), [anon_sym_register] = ACTIONS(914), @@ -35154,7 +34634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(914), [anon_sym_union] = ACTIONS(914), [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(914), [anon_sym_case] = ACTIONS(914), [anon_sym_default] = ACTIONS(914), @@ -35186,204 +34666,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(922), - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [224] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(70), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1148), + [225] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(270), + [sym_attributed_statement] = STATE(270), + [sym_labeled_statement] = STATE(270), + [sym_expression_statement] = STATE(270), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(270), + [sym_case_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(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35391,20 +34791,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(131), - [anon_sym_for] = ACTIONS(133), - [anon_sym_return] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_goto] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35426,44 +34826,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(300), - [sym_attributed_statement] = STATE(300), - [sym_labeled_statement] = STATE(300), - [sym_expression_statement] = STATE(300), - [sym_if_statement] = STATE(300), - [sym_switch_statement] = STATE(300), - [sym_case_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(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [226] = { + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(926), + [aux_sym_preproc_if_token1] = ACTIONS(926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(926), + [sym_preproc_directive] = ACTIONS(926), + [anon_sym_LPAREN2] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym___attribute__] = ACTIONS(926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(928), + [anon_sym___declspec] = ACTIONS(926), + [anon_sym___cdecl] = ACTIONS(926), + [anon_sym___clrcall] = ACTIONS(926), + [anon_sym___stdcall] = ACTIONS(926), + [anon_sym___fastcall] = ACTIONS(926), + [anon_sym___thiscall] = ACTIONS(926), + [anon_sym___vectorcall] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_static] = ACTIONS(926), + [anon_sym_auto] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_signed] = ACTIONS(926), + [anon_sym_unsigned] = ACTIONS(926), + [anon_sym_long] = ACTIONS(926), + [anon_sym_short] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_goto] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(926), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(926), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(928), + [anon_sym_u_SQUOTE] = ACTIONS(928), + [anon_sym_U_SQUOTE] = ACTIONS(928), + [anon_sym_u8_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_L_DQUOTE] = ACTIONS(928), + [anon_sym_u_DQUOTE] = ACTIONS(928), + [anon_sym_U_DQUOTE] = ACTIONS(928), + [anon_sym_u8_DQUOTE] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(928), + [sym_true] = ACTIONS(926), + [sym_false] = ACTIONS(926), + [sym_null] = ACTIONS(926), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(303), + [sym_attributed_statement] = STATE(303), + [sym_labeled_statement] = STATE(303), + [sym_expression_statement] = STATE(303), + [sym_if_statement] = STATE(303), + [sym_switch_statement] = STATE(303), + [sym_case_statement] = STATE(303), + [sym_while_statement] = STATE(303), + [sym_do_statement] = STATE(303), + [sym_for_statement] = STATE(303), + [sym_return_statement] = STATE(303), + [sym_break_statement] = STATE(303), + [sym_continue_statement] = STATE(303), + [sym_goto_statement] = STATE(303), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35471,20 +34951,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -35506,284 +34986,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [228] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym___restrict__] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym__Noreturn] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [anon_sym_offsetof] = ACTIONS(976), - [anon_sym__Generic] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), + [229] = { + [sym_identifier] = ACTIONS(930), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_LPAREN2] = ACTIONS(932), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym___attribute__] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(932), + [anon_sym___declspec] = ACTIONS(930), + [anon_sym___cdecl] = ACTIONS(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_static] = ACTIONS(930), + [anon_sym_auto] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_inline] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_volatile] = ACTIONS(930), + [anon_sym_restrict] = ACTIONS(930), + [anon_sym___restrict__] = ACTIONS(930), + [anon_sym__Atomic] = ACTIONS(930), + [anon_sym__Noreturn] = ACTIONS(930), + [anon_sym_signed] = ACTIONS(930), + [anon_sym_unsigned] = ACTIONS(930), + [anon_sym_long] = ACTIONS(930), + [anon_sym_short] = ACTIONS(930), + [sym_primitive_type] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_goto] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_sizeof] = ACTIONS(930), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(930), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(932), + [anon_sym_u_SQUOTE] = ACTIONS(932), + [anon_sym_U_SQUOTE] = ACTIONS(932), + [anon_sym_u8_SQUOTE] = ACTIONS(932), + [anon_sym_SQUOTE] = ACTIONS(932), + [anon_sym_L_DQUOTE] = ACTIONS(932), + [anon_sym_u_DQUOTE] = ACTIONS(932), + [anon_sym_U_DQUOTE] = ACTIONS(932), + [anon_sym_u8_DQUOTE] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(932), + [sym_true] = ACTIONS(930), + [sym_false] = ACTIONS(930), + [sym_null] = ACTIONS(930), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_if_token2] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym___restrict__] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym__Noreturn] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [anon_sym_offsetof] = ACTIONS(910), - [anon_sym__Generic] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [230] = { + [sym_identifier] = ACTIONS(934), + [aux_sym_preproc_include_token1] = ACTIONS(934), + [aux_sym_preproc_def_token1] = ACTIONS(934), + [aux_sym_preproc_if_token1] = ACTIONS(934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(934), + [sym_preproc_directive] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym___attribute__] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [anon_sym___declspec] = ACTIONS(934), + [anon_sym___cdecl] = ACTIONS(934), + [anon_sym___clrcall] = ACTIONS(934), + [anon_sym___stdcall] = ACTIONS(934), + [anon_sym___fastcall] = ACTIONS(934), + [anon_sym___thiscall] = ACTIONS(934), + [anon_sym___vectorcall] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_static] = ACTIONS(934), + [anon_sym_auto] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_inline] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_volatile] = ACTIONS(934), + [anon_sym_restrict] = ACTIONS(934), + [anon_sym___restrict__] = ACTIONS(934), + [anon_sym__Atomic] = ACTIONS(934), + [anon_sym__Noreturn] = ACTIONS(934), + [anon_sym_signed] = ACTIONS(934), + [anon_sym_unsigned] = ACTIONS(934), + [anon_sym_long] = ACTIONS(934), + [anon_sym_short] = ACTIONS(934), + [sym_primitive_type] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_switch] = ACTIONS(934), + [anon_sym_case] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_goto] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_sizeof] = ACTIONS(934), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(934), + [sym_number_literal] = ACTIONS(936), + [anon_sym_L_SQUOTE] = ACTIONS(936), + [anon_sym_u_SQUOTE] = ACTIONS(936), + [anon_sym_U_SQUOTE] = ACTIONS(936), + [anon_sym_u8_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_L_DQUOTE] = ACTIONS(936), + [anon_sym_u_DQUOTE] = ACTIONS(936), + [anon_sym_U_DQUOTE] = ACTIONS(936), + [anon_sym_u8_DQUOTE] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_null] = ACTIONS(934), + [sym_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(938), + [aux_sym_preproc_include_token1] = ACTIONS(938), + [aux_sym_preproc_def_token1] = ACTIONS(938), + [aux_sym_preproc_if_token1] = ACTIONS(938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(938), + [sym_preproc_directive] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(940), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_typedef] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym___attribute__] = ACTIONS(938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(940), + [anon_sym___declspec] = ACTIONS(938), + [anon_sym___cdecl] = ACTIONS(938), + [anon_sym___clrcall] = ACTIONS(938), + [anon_sym___stdcall] = ACTIONS(938), + [anon_sym___fastcall] = ACTIONS(938), + [anon_sym___thiscall] = ACTIONS(938), + [anon_sym___vectorcall] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_static] = ACTIONS(938), + [anon_sym_auto] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_inline] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_volatile] = ACTIONS(938), + [anon_sym_restrict] = ACTIONS(938), + [anon_sym___restrict__] = ACTIONS(938), + [anon_sym__Atomic] = ACTIONS(938), + [anon_sym__Noreturn] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(938), + [anon_sym_unsigned] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), + [sym_primitive_type] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_case] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_goto] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_sizeof] = ACTIONS(938), + [anon_sym_offsetof] = ACTIONS(938), + [anon_sym__Generic] = ACTIONS(938), + [sym_number_literal] = ACTIONS(940), + [anon_sym_L_SQUOTE] = ACTIONS(940), + [anon_sym_u_SQUOTE] = ACTIONS(940), + [anon_sym_U_SQUOTE] = ACTIONS(940), + [anon_sym_u8_SQUOTE] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(940), + [anon_sym_L_DQUOTE] = ACTIONS(940), + [anon_sym_u_DQUOTE] = ACTIONS(940), + [anon_sym_U_DQUOTE] = ACTIONS(940), + [anon_sym_u8_DQUOTE] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym_true] = ACTIONS(938), + [sym_false] = ACTIONS(938), + [sym_null] = ACTIONS(938), + [sym_comment] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(946), + [aux_sym_preproc_include_token1] = ACTIONS(946), + [aux_sym_preproc_def_token1] = ACTIONS(946), + [aux_sym_preproc_if_token1] = ACTIONS(946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(946), + [sym_preproc_directive] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_typedef] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(948), + [anon_sym___declspec] = ACTIONS(946), + [anon_sym___cdecl] = ACTIONS(946), + [anon_sym___clrcall] = ACTIONS(946), + [anon_sym___stdcall] = ACTIONS(946), + [anon_sym___fastcall] = ACTIONS(946), + [anon_sym___thiscall] = ACTIONS(946), + [anon_sym___vectorcall] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_restrict] = ACTIONS(946), + [anon_sym___restrict__] = ACTIONS(946), + [anon_sym__Atomic] = ACTIONS(946), + [anon_sym__Noreturn] = ACTIONS(946), + [anon_sym_signed] = ACTIONS(946), + [anon_sym_unsigned] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [sym_primitive_type] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_union] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_goto] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_sizeof] = ACTIONS(946), + [anon_sym_offsetof] = ACTIONS(946), + [anon_sym__Generic] = ACTIONS(946), + [sym_number_literal] = ACTIONS(948), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(948), + [anon_sym_u_DQUOTE] = ACTIONS(948), + [anon_sym_U_DQUOTE] = ACTIONS(948), + [anon_sym_u8_DQUOTE] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_null] = ACTIONS(946), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(942), + [aux_sym_preproc_include_token1] = ACTIONS(942), + [aux_sym_preproc_def_token1] = ACTIONS(942), + [aux_sym_preproc_if_token1] = ACTIONS(942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(942), + [sym_preproc_directive] = ACTIONS(942), + [anon_sym_LPAREN2] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_typedef] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(944), + [anon_sym___declspec] = ACTIONS(942), + [anon_sym___cdecl] = ACTIONS(942), + [anon_sym___clrcall] = ACTIONS(942), + [anon_sym___stdcall] = ACTIONS(942), + [anon_sym___fastcall] = ACTIONS(942), + [anon_sym___thiscall] = ACTIONS(942), + [anon_sym___vectorcall] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_static] = ACTIONS(942), + [anon_sym_auto] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_restrict] = ACTIONS(942), + [anon_sym___restrict__] = ACTIONS(942), + [anon_sym__Atomic] = ACTIONS(942), + [anon_sym__Noreturn] = ACTIONS(942), + [anon_sym_signed] = ACTIONS(942), + [anon_sym_unsigned] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [sym_primitive_type] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_goto] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_sizeof] = ACTIONS(942), + [anon_sym_offsetof] = ACTIONS(942), + [anon_sym__Generic] = ACTIONS(942), + [sym_number_literal] = ACTIONS(944), + [anon_sym_L_SQUOTE] = ACTIONS(944), + [anon_sym_u_SQUOTE] = ACTIONS(944), + [anon_sym_U_SQUOTE] = ACTIONS(944), + [anon_sym_u8_SQUOTE] = ACTIONS(944), + [anon_sym_SQUOTE] = ACTIONS(944), + [anon_sym_L_DQUOTE] = ACTIONS(944), + [anon_sym_u_DQUOTE] = ACTIONS(944), + [anon_sym_U_DQUOTE] = ACTIONS(944), + [anon_sym_u8_DQUOTE] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_null] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(237), + [sym_attributed_statement] = STATE(237), + [sym_labeled_statement] = STATE(237), + [sym_expression_statement] = STATE(237), + [sym_if_statement] = STATE(237), + [sym_switch_statement] = STATE(237), + [sym_case_statement] = STATE(237), + [sym_while_statement] = STATE(237), + [sym_do_statement] = STATE(237), + [sym_for_statement] = STATE(237), + [sym_return_statement] = STATE(237), + [sym_break_statement] = STATE(237), + [sym_continue_statement] = STATE(237), + [sym_goto_statement] = STATE(237), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [239] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1398), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(1148), + [235] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(74), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_case_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35792,7 +35592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_if] = ACTIONS(121), [anon_sym_switch] = ACTIONS(123), @@ -35826,44 +35626,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(266), - [sym_attributed_statement] = STATE(266), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(266), - [sym_if_statement] = STATE(266), - [sym_switch_statement] = STATE(266), - [sym_case_statement] = STATE(266), - [sym_while_statement] = STATE(266), - [sym_do_statement] = STATE(266), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(266), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(266), - [sym_goto_statement] = STATE(266), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [236] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(232), + [sym_attributed_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35872,7 +35672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -35906,364 +35706,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [241] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(296), - [sym_attributed_statement] = STATE(296), - [sym_labeled_statement] = STATE(296), - [sym_expression_statement] = STATE(296), - [sym_if_statement] = STATE(296), - [sym_switch_statement] = STATE(296), - [sym_case_statement] = STATE(296), - [sym_while_statement] = STATE(296), - [sym_do_statement] = STATE(296), - [sym_for_statement] = STATE(296), - [sym_return_statement] = STATE(296), - [sym_break_statement] = STATE(296), - [sym_continue_statement] = STATE(296), - [sym_goto_statement] = STATE(296), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [237] = { + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(938), + [aux_sym_preproc_include_token1] = ACTIONS(938), + [aux_sym_preproc_def_token1] = ACTIONS(938), + [aux_sym_preproc_if_token1] = ACTIONS(938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(938), + [sym_preproc_directive] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(940), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_typedef] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym___attribute__] = ACTIONS(938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(940), + [anon_sym___declspec] = ACTIONS(938), + [anon_sym___cdecl] = ACTIONS(938), + [anon_sym___clrcall] = ACTIONS(938), + [anon_sym___stdcall] = ACTIONS(938), + [anon_sym___fastcall] = ACTIONS(938), + [anon_sym___thiscall] = ACTIONS(938), + [anon_sym___vectorcall] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_static] = ACTIONS(938), + [anon_sym_auto] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_inline] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_volatile] = ACTIONS(938), + [anon_sym_restrict] = ACTIONS(938), + [anon_sym___restrict__] = ACTIONS(938), + [anon_sym__Atomic] = ACTIONS(938), + [anon_sym__Noreturn] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(938), + [anon_sym_unsigned] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), + [sym_primitive_type] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_case] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_goto] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_sizeof] = ACTIONS(938), + [anon_sym_offsetof] = ACTIONS(938), + [anon_sym__Generic] = ACTIONS(938), + [sym_number_literal] = ACTIONS(940), + [anon_sym_L_SQUOTE] = ACTIONS(940), + [anon_sym_u_SQUOTE] = ACTIONS(940), + [anon_sym_U_SQUOTE] = ACTIONS(940), + [anon_sym_u8_SQUOTE] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(940), + [anon_sym_L_DQUOTE] = ACTIONS(940), + [anon_sym_u_DQUOTE] = ACTIONS(940), + [anon_sym_U_DQUOTE] = ACTIONS(940), + [anon_sym_u8_DQUOTE] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym_true] = ACTIONS(938), + [sym_false] = ACTIONS(938), + [sym_null] = ACTIONS(938), [sym_comment] = ACTIONS(3), }, - [245] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [238] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36272,7 +35832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_if] = ACTIONS(333), [anon_sym_switch] = ACTIONS(335), @@ -36306,364 +35866,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(246), - [sym_attributed_statement] = STATE(246), - [sym_labeled_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_case_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_goto_statement] = STATE(246), + [240] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(275), + [sym_attributed_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36671,20 +35991,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36706,44 +36026,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [241] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36751,20 +36071,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -36786,204 +36106,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [242] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(934), + [aux_sym_preproc_include_token1] = ACTIONS(934), + [aux_sym_preproc_def_token1] = ACTIONS(934), + [aux_sym_preproc_if_token1] = ACTIONS(934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(934), + [sym_preproc_directive] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym___attribute__] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [anon_sym___declspec] = ACTIONS(934), + [anon_sym___cdecl] = ACTIONS(934), + [anon_sym___clrcall] = ACTIONS(934), + [anon_sym___stdcall] = ACTIONS(934), + [anon_sym___fastcall] = ACTIONS(934), + [anon_sym___thiscall] = ACTIONS(934), + [anon_sym___vectorcall] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_static] = ACTIONS(934), + [anon_sym_auto] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_inline] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_volatile] = ACTIONS(934), + [anon_sym_restrict] = ACTIONS(934), + [anon_sym___restrict__] = ACTIONS(934), + [anon_sym__Atomic] = ACTIONS(934), + [anon_sym__Noreturn] = ACTIONS(934), + [anon_sym_signed] = ACTIONS(934), + [anon_sym_unsigned] = ACTIONS(934), + [anon_sym_long] = ACTIONS(934), + [anon_sym_short] = ACTIONS(934), + [sym_primitive_type] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_switch] = ACTIONS(934), + [anon_sym_case] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_goto] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_sizeof] = ACTIONS(934), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(934), + [sym_number_literal] = ACTIONS(936), + [anon_sym_L_SQUOTE] = ACTIONS(936), + [anon_sym_u_SQUOTE] = ACTIONS(936), + [anon_sym_U_SQUOTE] = ACTIONS(936), + [anon_sym_u8_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_L_DQUOTE] = ACTIONS(936), + [anon_sym_u_DQUOTE] = ACTIONS(936), + [anon_sym_U_DQUOTE] = ACTIONS(936), + [anon_sym_u8_DQUOTE] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_null] = ACTIONS(934), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [244] = { + [ts_builtin_sym_end] = ACTIONS(932), + [sym_identifier] = ACTIONS(930), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_LPAREN2] = ACTIONS(932), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym___attribute__] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(932), + [anon_sym___declspec] = ACTIONS(930), + [anon_sym___cdecl] = ACTIONS(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_static] = ACTIONS(930), + [anon_sym_auto] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_inline] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_volatile] = ACTIONS(930), + [anon_sym_restrict] = ACTIONS(930), + [anon_sym___restrict__] = ACTIONS(930), + [anon_sym__Atomic] = ACTIONS(930), + [anon_sym__Noreturn] = ACTIONS(930), + [anon_sym_signed] = ACTIONS(930), + [anon_sym_unsigned] = ACTIONS(930), + [anon_sym_long] = ACTIONS(930), + [anon_sym_short] = ACTIONS(930), + [sym_primitive_type] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_goto] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_sizeof] = ACTIONS(930), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(930), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(932), + [anon_sym_u_SQUOTE] = ACTIONS(932), + [anon_sym_U_SQUOTE] = ACTIONS(932), + [anon_sym_u8_SQUOTE] = ACTIONS(932), + [anon_sym_SQUOTE] = ACTIONS(932), + [anon_sym_L_DQUOTE] = ACTIONS(932), + [anon_sym_u_DQUOTE] = ACTIONS(932), + [anon_sym_U_DQUOTE] = ACTIONS(932), + [anon_sym_u8_DQUOTE] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(932), + [sym_true] = ACTIONS(930), + [sym_false] = ACTIONS(930), + [sym_null] = ACTIONS(930), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(248), - [sym_attributed_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_case_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_goto_statement] = STATE(248), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [245] = { + [sym_identifier] = ACTIONS(942), + [aux_sym_preproc_include_token1] = ACTIONS(942), + [aux_sym_preproc_def_token1] = ACTIONS(942), + [aux_sym_preproc_if_token1] = ACTIONS(942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(942), + [sym_preproc_directive] = ACTIONS(942), + [anon_sym_LPAREN2] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_typedef] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(944), + [anon_sym___declspec] = ACTIONS(942), + [anon_sym___cdecl] = ACTIONS(942), + [anon_sym___clrcall] = ACTIONS(942), + [anon_sym___stdcall] = ACTIONS(942), + [anon_sym___fastcall] = ACTIONS(942), + [anon_sym___thiscall] = ACTIONS(942), + [anon_sym___vectorcall] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_static] = ACTIONS(942), + [anon_sym_auto] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_restrict] = ACTIONS(942), + [anon_sym___restrict__] = ACTIONS(942), + [anon_sym__Atomic] = ACTIONS(942), + [anon_sym__Noreturn] = ACTIONS(942), + [anon_sym_signed] = ACTIONS(942), + [anon_sym_unsigned] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [sym_primitive_type] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_goto] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_sizeof] = ACTIONS(942), + [anon_sym_offsetof] = ACTIONS(942), + [anon_sym__Generic] = ACTIONS(942), + [sym_number_literal] = ACTIONS(944), + [anon_sym_L_SQUOTE] = ACTIONS(944), + [anon_sym_u_SQUOTE] = ACTIONS(944), + [anon_sym_U_SQUOTE] = ACTIONS(944), + [anon_sym_u8_SQUOTE] = ACTIONS(944), + [anon_sym_SQUOTE] = ACTIONS(944), + [anon_sym_L_DQUOTE] = ACTIONS(944), + [anon_sym_u_DQUOTE] = ACTIONS(944), + [anon_sym_U_DQUOTE] = ACTIONS(944), + [anon_sym_u8_DQUOTE] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_null] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + }, + [246] = { + [sym_identifier] = ACTIONS(946), + [aux_sym_preproc_include_token1] = ACTIONS(946), + [aux_sym_preproc_def_token1] = ACTIONS(946), + [aux_sym_preproc_if_token1] = ACTIONS(946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(946), + [sym_preproc_directive] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_typedef] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(948), + [anon_sym___declspec] = ACTIONS(946), + [anon_sym___cdecl] = ACTIONS(946), + [anon_sym___clrcall] = ACTIONS(946), + [anon_sym___stdcall] = ACTIONS(946), + [anon_sym___fastcall] = ACTIONS(946), + [anon_sym___thiscall] = ACTIONS(946), + [anon_sym___vectorcall] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_restrict] = ACTIONS(946), + [anon_sym___restrict__] = ACTIONS(946), + [anon_sym__Atomic] = ACTIONS(946), + [anon_sym__Noreturn] = ACTIONS(946), + [anon_sym_signed] = ACTIONS(946), + [anon_sym_unsigned] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [sym_primitive_type] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_union] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_goto] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_sizeof] = ACTIONS(946), + [anon_sym_offsetof] = ACTIONS(946), + [anon_sym__Generic] = ACTIONS(946), + [sym_number_literal] = ACTIONS(948), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(948), + [anon_sym_u_DQUOTE] = ACTIONS(948), + [anon_sym_U_DQUOTE] = ACTIONS(948), + [anon_sym_u8_DQUOTE] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_null] = ACTIONS(946), + [sym_comment] = ACTIONS(3), + }, + [247] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [248] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(96), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36991,20 +36711,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37026,204 +36746,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym___restrict__] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym__Noreturn] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [anon_sym_offsetof] = ACTIONS(910), - [anon_sym__Generic] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [250] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym___restrict__] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym__Noreturn] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [anon_sym_offsetof] = ACTIONS(976), - [anon_sym__Generic] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), + [251] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(93), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_case_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(249), - [sym_attributed_statement] = STATE(249), - [sym_labeled_statement] = STATE(249), - [sym_expression_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_switch_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_do_statement] = STATE(249), - [sym_for_statement] = STATE(249), - [sym_return_statement] = STATE(249), - [sym_break_statement] = STATE(249), - [sym_continue_statement] = STATE(249), - [sym_goto_statement] = STATE(249), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [252] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(99), + [sym_attributed_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_case_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37231,20 +36951,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37266,7 +36986,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [258] = { + [253] = { + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(926), + [aux_sym_preproc_if_token1] = ACTIONS(926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(926), + [sym_preproc_directive] = ACTIONS(926), + [anon_sym_LPAREN2] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym___attribute__] = ACTIONS(926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(928), + [anon_sym___declspec] = ACTIONS(926), + [anon_sym___cdecl] = ACTIONS(926), + [anon_sym___clrcall] = ACTIONS(926), + [anon_sym___stdcall] = ACTIONS(926), + [anon_sym___fastcall] = ACTIONS(926), + [anon_sym___thiscall] = ACTIONS(926), + [anon_sym___vectorcall] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_static] = ACTIONS(926), + [anon_sym_auto] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_signed] = ACTIONS(926), + [anon_sym_unsigned] = ACTIONS(926), + [anon_sym_long] = ACTIONS(926), + [anon_sym_short] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_goto] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(926), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(926), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(928), + [anon_sym_u_SQUOTE] = ACTIONS(928), + [anon_sym_U_SQUOTE] = ACTIONS(928), + [anon_sym_u8_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_L_DQUOTE] = ACTIONS(928), + [anon_sym_u_DQUOTE] = ACTIONS(928), + [anon_sym_U_DQUOTE] = ACTIONS(928), + [anon_sym_u8_DQUOTE] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(928), + [sym_true] = ACTIONS(926), + [sym_false] = ACTIONS(926), + [sym_null] = ACTIONS(926), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [ts_builtin_sym_end] = ACTIONS(990), [sym_identifier] = ACTIONS(988), [aux_sym_preproc_include_token1] = ACTIONS(988), [aux_sym_preproc_def_token1] = ACTIONS(988), @@ -37294,7 +37095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(988), [anon_sym___vectorcall] = ACTIONS(988), [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), [anon_sym_static] = ACTIONS(988), [anon_sym_auto] = ACTIONS(988), [anon_sym_register] = ACTIONS(988), @@ -37346,124 +37146,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [255] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(212), + [sym_attributed_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_case_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(253), - [sym_attributed_statement] = STATE(253), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_case_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_goto_statement] = STATE(253), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [256] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token2] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym___restrict__] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym__Noreturn] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), + [anon_sym__Generic] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(72), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37471,20 +37351,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37506,44 +37386,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(255), - [sym_attributed_statement] = STATE(255), - [sym_labeled_statement] = STATE(255), - [sym_expression_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(255), - [sym_for_statement] = STATE(255), - [sym_return_statement] = STATE(255), - [sym_break_statement] = STATE(255), - [sym_continue_statement] = STATE(255), - [sym_goto_statement] = STATE(255), + [258] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1400), + [sym_attributed_statement] = STATE(1400), + [sym_labeled_statement] = STATE(1400), + [sym_expression_statement] = STATE(1400), + [sym_if_statement] = STATE(1400), + [sym_switch_statement] = STATE(1400), + [sym_case_statement] = STATE(1400), + [sym_while_statement] = STATE(1400), + [sym_do_statement] = STATE(1400), + [sym_for_statement] = STATE(1400), + [sym_return_statement] = STATE(1400), + [sym_break_statement] = STATE(1400), + [sym_continue_statement] = STATE(1400), + [sym_goto_statement] = STATE(1400), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37551,20 +37431,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37586,44 +37466,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(256), - [sym_attributed_statement] = STATE(256), - [sym_labeled_statement] = STATE(256), - [sym_expression_statement] = STATE(256), - [sym_if_statement] = STATE(256), - [sym_switch_statement] = STATE(256), - [sym_case_statement] = STATE(256), - [sym_while_statement] = STATE(256), - [sym_do_statement] = STATE(256), - [sym_for_statement] = STATE(256), - [sym_return_statement] = STATE(256), - [sym_break_statement] = STATE(256), - [sym_continue_statement] = STATE(256), - [sym_goto_statement] = STATE(256), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [259] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(294), + [sym_attributed_statement] = STATE(294), + [sym_labeled_statement] = STATE(294), + [sym_expression_statement] = STATE(294), + [sym_if_statement] = STATE(294), + [sym_switch_statement] = STATE(294), + [sym_case_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(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37631,20 +37511,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -37666,364 +37546,684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, + [260] = { + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, [263] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, [264] = { - [sym_attribute_declaration] = STATE(129), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, [265] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(258), - [sym_attributed_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), + [268] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(295), + [sym_attributed_statement] = STATE(295), + [sym_labeled_statement] = STATE(295), + [sym_expression_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_switch_statement] = STATE(295), + [sym_case_statement] = STATE(295), + [sym_while_statement] = STATE(295), + [sym_do_statement] = STATE(295), + [sym_for_statement] = STATE(295), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(295), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(295), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38031,20 +38231,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38066,44 +38266,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(259), - [sym_attributed_statement] = STATE(259), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_switch_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_do_statement] = STATE(259), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(259), - [sym_break_statement] = STATE(259), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(259), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [269] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38111,20 +38311,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(452), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(458), + [anon_sym_return] = ACTIONS(460), + [anon_sym_break] = ACTIONS(462), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_goto] = ACTIONS(466), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38146,11 +38346,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [269] = { + [270] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [272] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), [sym_preproc_directive] = ACTIONS(1008), @@ -38174,7 +38535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1008), [anon_sym___vectorcall] = ACTIONS(1008), [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_static] = ACTIONS(1008), [anon_sym_auto] = ACTIONS(1008), [anon_sym_register] = ACTIONS(1008), @@ -38226,284 +38586,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [273] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [274] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(297), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(297), + [sym_expression_statement] = STATE(297), + [sym_if_statement] = STATE(297), + [sym_switch_statement] = STATE(297), + [sym_case_statement] = STATE(297), + [sym_while_statement] = STATE(297), + [sym_do_statement] = STATE(297), + [sym_for_statement] = STATE(297), + [sym_return_statement] = STATE(297), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(297), + [sym_goto_statement] = STATE(297), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(920), + [anon_sym___declspec] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [anon_sym___restrict__] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [anon_sym__Noreturn] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_offsetof] = ACTIONS(918), + [anon_sym__Generic] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_L_SQUOTE] = ACTIONS(920), + [anon_sym_u_SQUOTE] = ACTIONS(920), + [anon_sym_U_SQUOTE] = ACTIONS(920), + [anon_sym_u8_SQUOTE] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_L_DQUOTE] = ACTIONS(920), + [anon_sym_u_DQUOTE] = ACTIONS(920), + [anon_sym_U_DQUOTE] = ACTIONS(920), + [anon_sym_u8_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym_true] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [277] = { + [sym_attribute_declaration] = STATE(277), + [sym_compound_statement] = STATE(276), + [sym_attributed_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(801), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1289), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(265), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), + [278] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(298), + [sym_attributed_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_case_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38511,20 +39031,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38546,44 +39066,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(269), - [sym_attributed_statement] = STATE(269), - [sym_labeled_statement] = STATE(269), - [sym_expression_statement] = STATE(269), - [sym_if_statement] = STATE(269), - [sym_switch_statement] = STATE(269), - [sym_case_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), + [279] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(299), + [sym_attributed_statement] = STATE(299), + [sym_labeled_statement] = STATE(299), + [sym_expression_statement] = STATE(299), + [sym_if_statement] = STATE(299), + [sym_switch_statement] = STATE(299), + [sym_case_statement] = STATE(299), + [sym_while_statement] = STATE(299), + [sym_do_statement] = STATE(299), + [sym_for_statement] = STATE(299), + [sym_return_statement] = STATE(299), + [sym_break_statement] = STATE(299), + [sym_continue_statement] = STATE(299), + [sym_goto_statement] = STATE(299), [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38591,20 +39111,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -38626,247 +39146,568 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [280] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1485), + [sym_attributed_statement] = STATE(1485), + [sym_labeled_statement] = STATE(1485), + [sym_expression_statement] = STATE(1485), + [sym_if_statement] = STATE(1485), + [sym_switch_statement] = STATE(1485), + [sym_case_statement] = STATE(1485), + [sym_while_statement] = STATE(1485), + [sym_do_statement] = STATE(1485), + [sym_for_statement] = STATE(1485), + [sym_return_statement] = STATE(1485), + [sym_break_statement] = STATE(1485), + [sym_continue_statement] = STATE(1485), + [sym_goto_statement] = STATE(1485), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [281] = { + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(926), + [aux_sym_preproc_def_token1] = ACTIONS(926), + [aux_sym_preproc_if_token1] = ACTIONS(926), + [aux_sym_preproc_if_token2] = ACTIONS(926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(926), + [sym_preproc_directive] = ACTIONS(926), + [anon_sym_LPAREN2] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym___attribute__] = ACTIONS(926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(928), + [anon_sym___declspec] = ACTIONS(926), + [anon_sym___cdecl] = ACTIONS(926), + [anon_sym___clrcall] = ACTIONS(926), + [anon_sym___stdcall] = ACTIONS(926), + [anon_sym___fastcall] = ACTIONS(926), + [anon_sym___thiscall] = ACTIONS(926), + [anon_sym___vectorcall] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_static] = ACTIONS(926), + [anon_sym_auto] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_signed] = ACTIONS(926), + [anon_sym_unsigned] = ACTIONS(926), + [anon_sym_long] = ACTIONS(926), + [anon_sym_short] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_goto] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(926), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(926), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(928), + [anon_sym_u_SQUOTE] = ACTIONS(928), + [anon_sym_U_SQUOTE] = ACTIONS(928), + [anon_sym_u8_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_L_DQUOTE] = ACTIONS(928), + [anon_sym_u_DQUOTE] = ACTIONS(928), + [anon_sym_U_DQUOTE] = ACTIONS(928), + [anon_sym_u8_DQUOTE] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(928), + [sym_true] = ACTIONS(926), + [sym_false] = ACTIONS(926), + [sym_null] = ACTIONS(926), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [sym_attribute_declaration] = STATE(282), + [sym_compound_statement] = STATE(283), + [sym_attributed_statement] = STATE(283), + [sym_labeled_statement] = STATE(283), + [sym_expression_statement] = STATE(283), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(283), + [sym_case_statement] = STATE(283), + [sym_while_statement] = STATE(283), + [sym_do_statement] = STATE(283), + [sym_for_statement] = STATE(283), + [sym_return_statement] = STATE(283), + [sym_break_statement] = STATE(283), + [sym_continue_statement] = STATE(283), + [sym_goto_statement] = STATE(283), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(282), + [sym_identifier] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [284] = { + [sym_identifier] = ACTIONS(930), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_if_token2] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_LPAREN2] = ACTIONS(932), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym___attribute__] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(932), + [anon_sym___declspec] = ACTIONS(930), + [anon_sym___cdecl] = ACTIONS(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_static] = ACTIONS(930), + [anon_sym_auto] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_inline] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_volatile] = ACTIONS(930), + [anon_sym_restrict] = ACTIONS(930), + [anon_sym___restrict__] = ACTIONS(930), + [anon_sym__Atomic] = ACTIONS(930), + [anon_sym__Noreturn] = ACTIONS(930), + [anon_sym_signed] = ACTIONS(930), + [anon_sym_unsigned] = ACTIONS(930), + [anon_sym_long] = ACTIONS(930), + [anon_sym_short] = ACTIONS(930), + [sym_primitive_type] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_goto] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_sizeof] = ACTIONS(930), + [anon_sym_offsetof] = ACTIONS(930), + [anon_sym__Generic] = ACTIONS(930), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(932), + [anon_sym_u_SQUOTE] = ACTIONS(932), + [anon_sym_U_SQUOTE] = ACTIONS(932), + [anon_sym_u8_SQUOTE] = ACTIONS(932), + [anon_sym_SQUOTE] = ACTIONS(932), + [anon_sym_L_DQUOTE] = ACTIONS(932), + [anon_sym_u_DQUOTE] = ACTIONS(932), + [anon_sym_U_DQUOTE] = ACTIONS(932), + [anon_sym_u8_DQUOTE] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(932), + [sym_true] = ACTIONS(930), + [sym_false] = ACTIONS(930), + [sym_null] = ACTIONS(930), [sym_comment] = ACTIONS(3), }, - [278] = { + [285] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym___restrict__] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym__Noreturn] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), + [anon_sym__Generic] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(86), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(1026), [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -38894,7 +39735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1024), [anon_sym___vectorcall] = ACTIONS(1024), [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), [anon_sym_static] = ACTIONS(1024), [anon_sym_auto] = ACTIONS(1024), [anon_sym_register] = ACTIONS(1024), @@ -38946,444 +39786,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [sym_attribute_declaration] = STATE(298), - [sym_compound_statement] = STATE(297), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(297), - [sym_if_statement] = STATE(297), - [sym_switch_statement] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_while_statement] = STATE(297), - [sym_do_statement] = STATE(297), - [sym_for_statement] = STATE(297), - [sym_return_statement] = STATE(297), - [sym_break_statement] = STATE(297), - [sym_continue_statement] = STATE(297), - [sym_goto_statement] = STATE(297), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(298), - [sym_identifier] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_do] = ACTIONS(343), - [anon_sym_for] = ACTIONS(345), - [anon_sym_return] = ACTIONS(347), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(351), - [anon_sym_goto] = ACTIONS(353), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), - [anon_sym_L_SQUOTE] = ACTIONS(89), - [anon_sym_u_SQUOTE] = ACTIONS(89), - [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_u_DQUOTE] = ACTIONS(91), - [anon_sym_U_DQUOTE] = ACTIONS(91), - [anon_sym_u8_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(217), - [sym_attributed_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [288] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(226), + [sym_attributed_statement] = STATE(226), + [sym_labeled_statement] = STATE(226), + [sym_expression_statement] = STATE(226), + [sym_if_statement] = STATE(226), + [sym_switch_statement] = STATE(226), + [sym_case_statement] = STATE(226), + [sym_while_statement] = STATE(226), + [sym_do_statement] = STATE(226), + [sym_for_statement] = STATE(226), + [sym_return_statement] = STATE(226), + [sym_break_statement] = STATE(226), + [sym_continue_statement] = STATE(226), + [sym_goto_statement] = STATE(226), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39392,7 +39832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_if] = ACTIONS(333), [anon_sym_switch] = ACTIONS(335), @@ -39426,87 +39866,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [285] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_offsetof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [289] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [286] = { + [290] = { [sym_identifier] = ACTIONS(906), [aux_sym_preproc_include_token1] = ACTIONS(906), [aux_sym_preproc_def_token1] = ACTIONS(906), @@ -39586,7 +40026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, - [287] = { + [291] = { [sym_identifier] = ACTIONS(972), [aux_sym_preproc_include_token1] = ACTIONS(972), [aux_sym_preproc_def_token1] = ACTIONS(972), @@ -39666,204 +40106,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [289] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [292] = { + [sym_identifier] = ACTIONS(934), + [aux_sym_preproc_include_token1] = ACTIONS(934), + [aux_sym_preproc_def_token1] = ACTIONS(934), + [aux_sym_preproc_if_token1] = ACTIONS(934), + [aux_sym_preproc_if_token2] = ACTIONS(934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(934), + [sym_preproc_directive] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym___attribute__] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [anon_sym___declspec] = ACTIONS(934), + [anon_sym___cdecl] = ACTIONS(934), + [anon_sym___clrcall] = ACTIONS(934), + [anon_sym___stdcall] = ACTIONS(934), + [anon_sym___fastcall] = ACTIONS(934), + [anon_sym___thiscall] = ACTIONS(934), + [anon_sym___vectorcall] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_static] = ACTIONS(934), + [anon_sym_auto] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_inline] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_volatile] = ACTIONS(934), + [anon_sym_restrict] = ACTIONS(934), + [anon_sym___restrict__] = ACTIONS(934), + [anon_sym__Atomic] = ACTIONS(934), + [anon_sym__Noreturn] = ACTIONS(934), + [anon_sym_signed] = ACTIONS(934), + [anon_sym_unsigned] = ACTIONS(934), + [anon_sym_long] = ACTIONS(934), + [anon_sym_short] = ACTIONS(934), + [sym_primitive_type] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_switch] = ACTIONS(934), + [anon_sym_case] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_goto] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_sizeof] = ACTIONS(934), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(934), + [sym_number_literal] = ACTIONS(936), + [anon_sym_L_SQUOTE] = ACTIONS(936), + [anon_sym_u_SQUOTE] = ACTIONS(936), + [anon_sym_U_SQUOTE] = ACTIONS(936), + [anon_sym_u8_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_L_DQUOTE] = ACTIONS(936), + [anon_sym_u_DQUOTE] = ACTIONS(936), + [anon_sym_U_DQUOTE] = ACTIONS(936), + [anon_sym_u8_DQUOTE] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_null] = ACTIONS(934), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(276), - [sym_attributed_statement] = STATE(276), - [sym_labeled_statement] = STATE(276), - [sym_expression_statement] = STATE(276), - [sym_if_statement] = STATE(276), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(276), - [sym_while_statement] = STATE(276), - [sym_do_statement] = STATE(276), - [sym_for_statement] = STATE(276), - [sym_return_statement] = STATE(276), - [sym_break_statement] = STATE(276), - [sym_continue_statement] = STATE(276), - [sym_goto_statement] = STATE(276), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [293] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39872,7 +40232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_if] = ACTIONS(333), [anon_sym_switch] = ACTIONS(335), @@ -39906,204 +40266,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [294] = { + [sym_identifier] = ACTIONS(938), + [aux_sym_preproc_include_token1] = ACTIONS(938), + [aux_sym_preproc_def_token1] = ACTIONS(938), + [aux_sym_preproc_if_token1] = ACTIONS(938), + [aux_sym_preproc_if_token2] = ACTIONS(938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(938), + [sym_preproc_directive] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(940), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_typedef] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym___attribute__] = ACTIONS(938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(940), + [anon_sym___declspec] = ACTIONS(938), + [anon_sym___cdecl] = ACTIONS(938), + [anon_sym___clrcall] = ACTIONS(938), + [anon_sym___stdcall] = ACTIONS(938), + [anon_sym___fastcall] = ACTIONS(938), + [anon_sym___thiscall] = ACTIONS(938), + [anon_sym___vectorcall] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_static] = ACTIONS(938), + [anon_sym_auto] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_inline] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_volatile] = ACTIONS(938), + [anon_sym_restrict] = ACTIONS(938), + [anon_sym___restrict__] = ACTIONS(938), + [anon_sym__Atomic] = ACTIONS(938), + [anon_sym__Noreturn] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(938), + [anon_sym_unsigned] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), + [sym_primitive_type] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_case] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_goto] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_sizeof] = ACTIONS(938), + [anon_sym_offsetof] = ACTIONS(938), + [anon_sym__Generic] = ACTIONS(938), + [sym_number_literal] = ACTIONS(940), + [anon_sym_L_SQUOTE] = ACTIONS(940), + [anon_sym_u_SQUOTE] = ACTIONS(940), + [anon_sym_U_SQUOTE] = ACTIONS(940), + [anon_sym_u8_SQUOTE] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(940), + [anon_sym_L_DQUOTE] = ACTIONS(940), + [anon_sym_u_DQUOTE] = ACTIONS(940), + [anon_sym_U_DQUOTE] = ACTIONS(940), + [anon_sym_u8_DQUOTE] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym_true] = ACTIONS(938), + [sym_false] = ACTIONS(938), + [sym_null] = ACTIONS(938), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [295] = { + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym___restrict__] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym__Noreturn] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), + [anon_sym__Generic] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_attribute_declaration] = STATE(280), - [sym_compound_statement] = STATE(307), - [sym_attributed_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1317), + [296] = { + [sym_attribute_declaration] = STATE(305), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -40112,7 +40472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(329), [anon_sym_if] = ACTIONS(333), [anon_sym_switch] = ACTIONS(335), @@ -40146,7 +40506,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [294] = { + [297] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym___restrict__] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym__Noreturn] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(976), + [anon_sym__Generic] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(982), [sym_identifier] = ACTIONS(980), [aux_sym_preproc_include_token1] = ACTIONS(980), [aux_sym_preproc_def_token1] = ACTIONS(980), @@ -40160,794 +40601,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(980), [anon_sym_PLUS] = ACTIONS(980), [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [298] = { - [sym_attribute_declaration] = STATE(298), - [sym_compound_statement] = STATE(297), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(297), - [sym_if_statement] = STATE(297), - [sym_switch_statement] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_while_statement] = STATE(297), - [sym_do_statement] = STATE(297), - [sym_for_statement] = STATE(297), - [sym_return_statement] = STATE(297), - [sym_break_statement] = STATE(297), - [sym_continue_statement] = STATE(297), - [sym_goto_statement] = STATE(297), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(298), - [sym_identifier] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [sym_null] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [299] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, [300] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [301] = { - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, [302] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), + [sym_identifier] = ACTIONS(942), + [aux_sym_preproc_include_token1] = ACTIONS(942), + [aux_sym_preproc_def_token1] = ACTIONS(942), + [aux_sym_preproc_if_token1] = ACTIONS(942), + [aux_sym_preproc_if_token2] = ACTIONS(942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(942), + [sym_preproc_directive] = ACTIONS(942), + [anon_sym_LPAREN2] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_typedef] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym___attribute__] = ACTIONS(942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(944), + [anon_sym___declspec] = ACTIONS(942), + [anon_sym___cdecl] = ACTIONS(942), + [anon_sym___clrcall] = ACTIONS(942), + [anon_sym___stdcall] = ACTIONS(942), + [anon_sym___fastcall] = ACTIONS(942), + [anon_sym___thiscall] = ACTIONS(942), + [anon_sym___vectorcall] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_static] = ACTIONS(942), + [anon_sym_auto] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_restrict] = ACTIONS(942), + [anon_sym___restrict__] = ACTIONS(942), + [anon_sym__Atomic] = ACTIONS(942), + [anon_sym__Noreturn] = ACTIONS(942), + [anon_sym_signed] = ACTIONS(942), + [anon_sym_unsigned] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [sym_primitive_type] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_goto] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_sizeof] = ACTIONS(942), + [anon_sym_offsetof] = ACTIONS(942), + [anon_sym__Generic] = ACTIONS(942), + [sym_number_literal] = ACTIONS(944), + [anon_sym_L_SQUOTE] = ACTIONS(944), + [anon_sym_u_SQUOTE] = ACTIONS(944), + [anon_sym_U_SQUOTE] = ACTIONS(944), + [anon_sym_u8_SQUOTE] = ACTIONS(944), + [anon_sym_SQUOTE] = ACTIONS(944), + [anon_sym_L_DQUOTE] = ACTIONS(944), + [anon_sym_u_DQUOTE] = ACTIONS(944), + [anon_sym_U_DQUOTE] = ACTIONS(944), + [anon_sym_u8_DQUOTE] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_null] = ACTIONS(942), [sym_comment] = ACTIONS(3), }, [303] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [sym_identifier] = ACTIONS(946), + [aux_sym_preproc_include_token1] = ACTIONS(946), + [aux_sym_preproc_def_token1] = ACTIONS(946), + [aux_sym_preproc_if_token1] = ACTIONS(946), + [aux_sym_preproc_if_token2] = ACTIONS(946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(946), + [sym_preproc_directive] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_typedef] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(948), + [anon_sym___declspec] = ACTIONS(946), + [anon_sym___cdecl] = ACTIONS(946), + [anon_sym___clrcall] = ACTIONS(946), + [anon_sym___stdcall] = ACTIONS(946), + [anon_sym___fastcall] = ACTIONS(946), + [anon_sym___thiscall] = ACTIONS(946), + [anon_sym___vectorcall] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_restrict] = ACTIONS(946), + [anon_sym___restrict__] = ACTIONS(946), + [anon_sym__Atomic] = ACTIONS(946), + [anon_sym__Noreturn] = ACTIONS(946), + [anon_sym_signed] = ACTIONS(946), + [anon_sym_unsigned] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [sym_primitive_type] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_union] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_goto] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_sizeof] = ACTIONS(946), + [anon_sym_offsetof] = ACTIONS(946), + [anon_sym__Generic] = ACTIONS(946), + [sym_number_literal] = ACTIONS(948), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(948), + [anon_sym_u_DQUOTE] = ACTIONS(948), + [anon_sym_U_DQUOTE] = ACTIONS(948), + [anon_sym_u8_DQUOTE] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_null] = ACTIONS(946), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_attribute_declaration] = STATE(129), + [305] = { + [sym_attribute_declaration] = STATE(282), [sym_compound_statement] = STATE(283), [sym_attributed_statement] = STATE(283), [sym_labeled_statement] = STATE(283), @@ -40962,28 +41162,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(283), [sym_continue_statement] = STATE(283), [sym_goto_statement] = STATE(283), - [sym__expression] = STATE(800), - [sym_comma_expression] = STATE(1344), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1142), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1389), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(282), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -40991,20 +41191,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(598), - [anon_sym_default] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_do] = ACTIONS(604), - [anon_sym_for] = ACTIONS(606), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_goto] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -41026,44 +41226,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(1484), - [sym_attributed_statement] = STATE(1484), - [sym_labeled_statement] = STATE(1484), - [sym_expression_statement] = STATE(1484), - [sym_if_statement] = STATE(1484), - [sym_switch_statement] = STATE(1484), - [sym_case_statement] = STATE(1484), - [sym_while_statement] = STATE(1484), - [sym_do_statement] = STATE(1484), - [sym_for_statement] = STATE(1484), - [sym_return_statement] = STATE(1484), - [sym_break_statement] = STATE(1484), - [sym_continue_statement] = STATE(1484), - [sym_goto_statement] = STATE(1484), - [sym__expression] = STATE(809), - [sym_comma_expression] = STATE(1465), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1146), + [306] = { + [sym_attribute_declaration] = STATE(197), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(758), + [sym_comma_expression] = STATE(1414), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [309] = { + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -41072,7 +41512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -41106,564 +41546,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, [310] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token2] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym___restrict__] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym__Noreturn] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [anon_sym_offsetof] = ACTIONS(1096), + [anon_sym__Generic] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, [312] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [313] = { [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -41742,406 +41783,802 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym___restrict__] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym__Noreturn] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), + [anon_sym__Generic] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [315] = { - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym___restrict__] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym__Noreturn] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), + [anon_sym__Generic] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), [sym_comment] = ACTIONS(3), }, [316] = { - [sym_identifier] = ACTIONS(1132), - [aux_sym_preproc_include_token1] = ACTIONS(1132), - [aux_sym_preproc_def_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), - [sym_preproc_directive] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym___attribute__] = ACTIONS(1132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), - [anon_sym___declspec] = ACTIONS(1132), - [anon_sym___cdecl] = ACTIONS(1132), - [anon_sym___clrcall] = ACTIONS(1132), - [anon_sym___stdcall] = ACTIONS(1132), - [anon_sym___fastcall] = ACTIONS(1132), - [anon_sym___thiscall] = ACTIONS(1132), - [anon_sym___vectorcall] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_auto] = ACTIONS(1132), - [anon_sym_register] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_volatile] = ACTIONS(1132), - [anon_sym_restrict] = ACTIONS(1132), - [anon_sym___restrict__] = ACTIONS(1132), - [anon_sym__Atomic] = ACTIONS(1132), - [anon_sym__Noreturn] = ACTIONS(1132), - [anon_sym_signed] = ACTIONS(1132), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_goto] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1132), - [anon_sym_offsetof] = ACTIONS(1132), - [anon_sym__Generic] = ACTIONS(1132), - [sym_number_literal] = ACTIONS(1134), - [anon_sym_L_SQUOTE] = ACTIONS(1134), - [anon_sym_u_SQUOTE] = ACTIONS(1134), - [anon_sym_U_SQUOTE] = ACTIONS(1134), - [anon_sym_u8_SQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1134), - [anon_sym_u_DQUOTE] = ACTIONS(1134), - [anon_sym_U_DQUOTE] = ACTIONS(1134), - [anon_sym_u8_DQUOTE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_true] = ACTIONS(1132), - [sym_false] = ACTIONS(1132), - [sym_null] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym___restrict__] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym__Noreturn] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [anon_sym_offsetof] = ACTIONS(1108), - [anon_sym__Generic] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token2] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), + [anon_sym___declspec] = ACTIONS(1128), + [anon_sym___cdecl] = ACTIONS(1128), + [anon_sym___clrcall] = ACTIONS(1128), + [anon_sym___stdcall] = ACTIONS(1128), + [anon_sym___fastcall] = ACTIONS(1128), + [anon_sym___thiscall] = ACTIONS(1128), + [anon_sym___vectorcall] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [anon_sym___restrict__] = ACTIONS(1128), + [anon_sym__Atomic] = ACTIONS(1128), + [anon_sym__Noreturn] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_offsetof] = ACTIONS(1128), + [anon_sym__Generic] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym_u_SQUOTE] = ACTIONS(1130), + [anon_sym_U_SQUOTE] = ACTIONS(1130), + [anon_sym_u8_SQUOTE] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_u_DQUOTE] = ACTIONS(1130), + [anon_sym_U_DQUOTE] = ACTIONS(1130), + [anon_sym_u8_DQUOTE] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), [sym_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym___restrict__] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym__Noreturn] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [anon_sym_offsetof] = ACTIONS(1104), - [anon_sym__Generic] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym___restrict__] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym__Noreturn] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), + [anon_sym__Generic] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym___restrict__] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym__Noreturn] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), + [anon_sym__Generic] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym___restrict__] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym__Noreturn] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [anon_sym_offsetof] = ACTIONS(1076), + [anon_sym__Generic] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [319] = { + [323] = { [sym_identifier] = ACTIONS(1116), [aux_sym_preproc_include_token1] = ACTIONS(1116), [aux_sym_preproc_def_token1] = ACTIONS(1116), [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), [sym_preproc_directive] = ACTIONS(1116), @@ -42165,7 +42602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1116), [anon_sym___vectorcall] = ACTIONS(1116), [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), [anon_sym_static] = ACTIONS(1116), [anon_sym_auto] = ACTIONS(1116), [anon_sym_register] = ACTIONS(1116), @@ -42216,248 +42652,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym___restrict__] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym__Noreturn] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym_offsetof] = ACTIONS(1112), - [anon_sym__Generic] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_comment] = ACTIONS(3), - }, - [321] = { - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym___restrict__] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym__Noreturn] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [anon_sym_offsetof] = ACTIONS(1096), - [anon_sym__Generic] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [324] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [325] = { + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token2] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym___restrict__] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym__Noreturn] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [anon_sym_offsetof] = ACTIONS(1076), + [anon_sym__Generic] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [323] = { + [326] = { [sym_identifier] = ACTIONS(1088), [aux_sym_preproc_include_token1] = ACTIONS(1088), [aux_sym_preproc_def_token1] = ACTIONS(1088), [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token2] = ACTIONS(1088), [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), [sym_preproc_directive] = ACTIONS(1088), @@ -42481,7 +42839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1088), [anon_sym___vectorcall] = ACTIONS(1088), [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), [anon_sym_static] = ACTIONS(1088), [anon_sym_auto] = ACTIONS(1088), [anon_sym_register] = ACTIONS(1088), @@ -42532,87 +42889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1134), + [327] = { [sym_identifier] = ACTIONS(1132), [aux_sym_preproc_include_token1] = ACTIONS(1132), [aux_sym_preproc_def_token1] = ACTIONS(1132), @@ -42640,6 +42917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1132), [anon_sym___vectorcall] = ACTIONS(1132), [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), [anon_sym_static] = ACTIONS(1132), [anon_sym_auto] = ACTIONS(1132), [anon_sym_register] = ACTIONS(1132), @@ -42690,86 +42968,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1132), [sym_comment] = ACTIONS(3), }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), + [328] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token2] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym___restrict__] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym__Noreturn] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), + [anon_sym__Generic] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), [sym_comment] = ACTIONS(3), }, - [327] = { + [330] = { + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym___restrict__] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym__Noreturn] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [anon_sym_offsetof] = ACTIONS(1084), + [anon_sym__Generic] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1110), [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -42797,7 +43234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1108), [anon_sym___vectorcall] = ACTIONS(1108), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), [anon_sym_static] = ACTIONS(1108), [anon_sym_auto] = ACTIONS(1108), [anon_sym_register] = ACTIONS(1108), @@ -42833,576 +43269,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_offsetof] = ACTIONS(1108), [anon_sym__Generic] = ACTIONS(1108), [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), - }, - [328] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [329] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym___restrict__] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym__Noreturn] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [anon_sym_offsetof] = ACTIONS(1104), - [anon_sym__Generic] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym___restrict__] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym__Noreturn] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [anon_sym_offsetof] = ACTIONS(1100), - [anon_sym__Generic] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym___restrict__] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym__Noreturn] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [anon_sym_offsetof] = ACTIONS(1096), - [anon_sym__Generic] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [332] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1132), + [aux_sym_preproc_include_token1] = ACTIONS(1132), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), + [sym_preproc_directive] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym___attribute__] = ACTIONS(1132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), + [anon_sym___declspec] = ACTIONS(1132), + [anon_sym___cdecl] = ACTIONS(1132), + [anon_sym___clrcall] = ACTIONS(1132), + [anon_sym___stdcall] = ACTIONS(1132), + [anon_sym___fastcall] = ACTIONS(1132), + [anon_sym___thiscall] = ACTIONS(1132), + [anon_sym___vectorcall] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_auto] = ACTIONS(1132), + [anon_sym_register] = ACTIONS(1132), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym___restrict__] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym__Noreturn] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1132), + [anon_sym_unsigned] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [sym_primitive_type] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_goto] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_sizeof] = ACTIONS(1132), + [anon_sym_offsetof] = ACTIONS(1132), + [anon_sym__Generic] = ACTIONS(1132), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_L_SQUOTE] = ACTIONS(1134), + [anon_sym_u_SQUOTE] = ACTIONS(1134), + [anon_sym_U_SQUOTE] = ACTIONS(1134), + [anon_sym_u8_SQUOTE] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1134), + [anon_sym_u_DQUOTE] = ACTIONS(1134), + [anon_sym_U_DQUOTE] = ACTIONS(1134), + [anon_sym_u8_DQUOTE] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), [sym_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1058), + [333] = { [sym_identifier] = ACTIONS(1056), [aux_sym_preproc_include_token1] = ACTIONS(1056), [aux_sym_preproc_def_token1] = ACTIONS(1056), @@ -43430,6 +43391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1056), [anon_sym___vectorcall] = ACTIONS(1056), [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), [anon_sym_static] = ACTIONS(1056), [anon_sym_auto] = ACTIONS(1056), [anon_sym_register] = ACTIONS(1056), @@ -43480,86 +43442,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [334] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym___restrict__] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym__Noreturn] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [anon_sym_offsetof] = ACTIONS(1068), + [anon_sym__Generic] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [337] = { + [335] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [336] = { [ts_builtin_sym_end] = ACTIONS(1114), [sym_identifier] = ACTIONS(1112), [aux_sym_preproc_include_token1] = ACTIONS(1112), @@ -43638,644 +43679,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [339] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym___restrict__] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym__Noreturn] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [anon_sym_offsetof] = ACTIONS(1076), - [anon_sym__Generic] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym___restrict__] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym__Noreturn] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [anon_sym_offsetof] = ACTIONS(1072), - [anon_sym__Generic] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [337] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [338] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym___restrict__] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym__Noreturn] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [anon_sym_offsetof] = ACTIONS(1084), - [anon_sym__Generic] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [339] = { + [sym_identifier] = ACTIONS(1132), + [aux_sym_preproc_include_token1] = ACTIONS(1132), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token2] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), + [sym_preproc_directive] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym___attribute__] = ACTIONS(1132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), + [anon_sym___declspec] = ACTIONS(1132), + [anon_sym___cdecl] = ACTIONS(1132), + [anon_sym___clrcall] = ACTIONS(1132), + [anon_sym___stdcall] = ACTIONS(1132), + [anon_sym___fastcall] = ACTIONS(1132), + [anon_sym___thiscall] = ACTIONS(1132), + [anon_sym___vectorcall] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_auto] = ACTIONS(1132), + [anon_sym_register] = ACTIONS(1132), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym___restrict__] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym__Noreturn] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1132), + [anon_sym_unsigned] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [sym_primitive_type] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_goto] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_sizeof] = ACTIONS(1132), + [anon_sym_offsetof] = ACTIONS(1132), + [anon_sym__Generic] = ACTIONS(1132), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_L_SQUOTE] = ACTIONS(1134), + [anon_sym_u_SQUOTE] = ACTIONS(1134), + [anon_sym_U_SQUOTE] = ACTIONS(1134), + [anon_sym_u8_SQUOTE] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1134), + [anon_sym_u_DQUOTE] = ACTIONS(1134), + [anon_sym_U_DQUOTE] = ACTIONS(1134), + [anon_sym_u8_DQUOTE] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [340] = { + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym___restrict__] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym__Noreturn] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [anon_sym_offsetof] = ACTIONS(1088), + [anon_sym__Generic] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym___restrict__] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym__Noreturn] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [anon_sym_offsetof] = ACTIONS(1072), - [anon_sym__Generic] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [341] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [342] = { + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym___restrict__] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym__Noreturn] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [anon_sym_offsetof] = ACTIONS(1088), + [anon_sym__Generic] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [346] = { + [343] = { [sym_identifier] = ACTIONS(1104), [aux_sym_preproc_include_token1] = ACTIONS(1104), [aux_sym_preproc_def_token1] = ACTIONS(1104), [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token2] = ACTIONS(1104), [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), [sym_preproc_directive] = ACTIONS(1104), @@ -44299,6 +44181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1104), [anon_sym___vectorcall] = ACTIONS(1104), [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), [anon_sym_static] = ACTIONS(1104), [anon_sym_auto] = ACTIONS(1104), [anon_sym_register] = ACTIONS(1104), @@ -44349,86 +44232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [348] = { + [344] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -44507,245 +44311,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym___restrict__] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym__Noreturn] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [anon_sym_offsetof] = ACTIONS(1068), - [anon_sym__Generic] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [345] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), [sym_comment] = ACTIONS(3), }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym___restrict__] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym__Noreturn] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [anon_sym_offsetof] = ACTIONS(1100), - [anon_sym__Generic] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [346] = { + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token2] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), [sym_comment] = ACTIONS(3), }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1078), + [347] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [348] = { [sym_identifier] = ACTIONS(1076), [aux_sym_preproc_include_token1] = ACTIONS(1076), [aux_sym_preproc_def_token1] = ACTIONS(1076), @@ -44773,6 +44576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1076), [anon_sym___vectorcall] = ACTIONS(1076), [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), [anon_sym_static] = ACTIONS(1076), [anon_sym_auto] = ACTIONS(1076), [anon_sym_register] = ACTIONS(1076), @@ -44823,166 +44627,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token2] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym___restrict__] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym__Noreturn] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [anon_sym_offsetof] = ACTIONS(1088), - [anon_sym__Generic] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), + [349] = { + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), + [anon_sym___declspec] = ACTIONS(1128), + [anon_sym___cdecl] = ACTIONS(1128), + [anon_sym___clrcall] = ACTIONS(1128), + [anon_sym___stdcall] = ACTIONS(1128), + [anon_sym___fastcall] = ACTIONS(1128), + [anon_sym___thiscall] = ACTIONS(1128), + [anon_sym___vectorcall] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [anon_sym___restrict__] = ACTIONS(1128), + [anon_sym__Atomic] = ACTIONS(1128), + [anon_sym__Noreturn] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_offsetof] = ACTIONS(1128), + [anon_sym__Generic] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym_u_SQUOTE] = ACTIONS(1130), + [anon_sym_U_SQUOTE] = ACTIONS(1130), + [anon_sym_u8_SQUOTE] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_u_DQUOTE] = ACTIONS(1130), + [anon_sym_U_DQUOTE] = ACTIONS(1130), + [anon_sym_u8_DQUOTE] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym___restrict__] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym__Noreturn] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [anon_sym_offsetof] = ACTIONS(1096), + [anon_sym__Generic] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token2] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym___restrict__] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym__Noreturn] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [anon_sym_offsetof] = ACTIONS(1076), - [anon_sym__Generic] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [353] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1086), + [354] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -45010,6 +45050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1084), [anon_sym___vectorcall] = ACTIONS(1084), [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_static] = ACTIONS(1084), [anon_sym_auto] = ACTIONS(1084), [anon_sym_register] = ACTIONS(1084), @@ -45060,328 +45101,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1132), - [aux_sym_preproc_include_token1] = ACTIONS(1132), - [aux_sym_preproc_def_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token2] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), - [sym_preproc_directive] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym___attribute__] = ACTIONS(1132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), - [anon_sym___declspec] = ACTIONS(1132), - [anon_sym___cdecl] = ACTIONS(1132), - [anon_sym___clrcall] = ACTIONS(1132), - [anon_sym___stdcall] = ACTIONS(1132), - [anon_sym___fastcall] = ACTIONS(1132), - [anon_sym___thiscall] = ACTIONS(1132), - [anon_sym___vectorcall] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_auto] = ACTIONS(1132), - [anon_sym_register] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_volatile] = ACTIONS(1132), - [anon_sym_restrict] = ACTIONS(1132), - [anon_sym___restrict__] = ACTIONS(1132), - [anon_sym__Atomic] = ACTIONS(1132), - [anon_sym__Noreturn] = ACTIONS(1132), - [anon_sym_signed] = ACTIONS(1132), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_goto] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1132), - [anon_sym_offsetof] = ACTIONS(1132), - [anon_sym__Generic] = ACTIONS(1132), - [sym_number_literal] = ACTIONS(1134), - [anon_sym_L_SQUOTE] = ACTIONS(1134), - [anon_sym_u_SQUOTE] = ACTIONS(1134), - [anon_sym_U_SQUOTE] = ACTIONS(1134), - [anon_sym_u8_SQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1134), - [anon_sym_u_DQUOTE] = ACTIONS(1134), - [anon_sym_U_DQUOTE] = ACTIONS(1134), - [anon_sym_u8_DQUOTE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_true] = ACTIONS(1132), - [sym_false] = ACTIONS(1132), - [sym_null] = ACTIONS(1132), - [sym_comment] = ACTIONS(3), - }, - [357] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token2] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym___restrict__] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym__Noreturn] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [anon_sym_offsetof] = ACTIONS(1068), - [anon_sym__Generic] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [355] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token2] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), + [356] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1090), - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym___restrict__] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym__Noreturn] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [anon_sym_offsetof] = ACTIONS(1088), - [anon_sym__Generic] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), + [357] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), [sym_comment] = ACTIONS(3), }, - [360] = { + [358] = { + [ts_builtin_sym_end] = ACTIONS(1098), [sym_identifier] = ACTIONS(1096), [aux_sym_preproc_include_token1] = ACTIONS(1096), [aux_sym_preproc_def_token1] = ACTIONS(1096), [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token2] = ACTIONS(1096), [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), [sym_preproc_directive] = ACTIONS(1096), @@ -45455,91 +45417,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token2] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym___restrict__] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym__Noreturn] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym_offsetof] = ACTIONS(1112), - [anon_sym__Generic] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_comment] = ACTIONS(3), - }, - [362] = { + [359] = { + [ts_builtin_sym_end] = ACTIONS(1102), [sym_identifier] = ACTIONS(1100), [aux_sym_preproc_include_token1] = ACTIONS(1100), [aux_sym_preproc_def_token1] = ACTIONS(1100), [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token2] = ACTIONS(1100), [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), [sym_preproc_directive] = ACTIONS(1100), @@ -45547,468 +45430,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(1102), [anon_sym_TILDE] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym___restrict__] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym__Noreturn] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [anon_sym_offsetof] = ACTIONS(1100), - [anon_sym__Generic] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym___restrict__] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym__Noreturn] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym_offsetof] = ACTIONS(1116), - [anon_sym__Generic] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token2] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym___restrict__] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym__Noreturn] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym_offsetof] = ACTIONS(1116), - [anon_sym__Generic] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - }, - [365] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [366] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token2] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [360] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token2] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym___restrict__] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym__Noreturn] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), + [anon_sym__Generic] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [368] = { + [361] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -46087,244 +45654,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [362] = { + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), [sym_comment] = ACTIONS(3), }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [363] = { + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), + [anon_sym___declspec] = ACTIONS(1128), + [anon_sym___cdecl] = ACTIONS(1128), + [anon_sym___clrcall] = ACTIONS(1128), + [anon_sym___stdcall] = ACTIONS(1128), + [anon_sym___fastcall] = ACTIONS(1128), + [anon_sym___thiscall] = ACTIONS(1128), + [anon_sym___vectorcall] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [anon_sym___restrict__] = ACTIONS(1128), + [anon_sym__Atomic] = ACTIONS(1128), + [anon_sym__Noreturn] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_offsetof] = ACTIONS(1128), + [anon_sym__Generic] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym_u_SQUOTE] = ACTIONS(1130), + [anon_sym_U_SQUOTE] = ACTIONS(1130), + [anon_sym_u8_SQUOTE] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_u_DQUOTE] = ACTIONS(1130), + [anon_sym_U_DQUOTE] = ACTIONS(1130), + [anon_sym_u8_DQUOTE] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [365] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [372] = { + [366] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -46403,37 +46049,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, + [367] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym_offsetof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [368] = { + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym___restrict__] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym__Noreturn] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [anon_sym_offsetof] = ACTIONS(1068), + [anon_sym__Generic] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [369] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [370] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [372] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym_offsetof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, [373] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1482), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1427), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46478,36 +46598,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [374] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1393), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1483), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46552,36 +46672,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [375] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1368), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1342), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46626,36 +46746,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [376] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1389), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1407), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46700,36 +46820,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [377] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1461), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1462), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46774,36 +46894,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [378] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1440), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1420), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46849,25 +46969,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [379] = { [sym__expression] = STATE(590), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_initializer_list] = STATE(589), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_initializer_list] = STATE(591), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym_identifier] = ACTIONS(1367), [anon_sym_COMMA] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(888), @@ -46922,36 +47042,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [380] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1373), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1374), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46996,36 +47116,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [381] = { - [sym_type_qualifier] = STATE(875), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(886), - [sym_enum_specifier] = STATE(886), - [sym_struct_specifier] = STATE(886), - [sym_union_specifier] = STATE(886), - [sym__expression] = STATE(795), - [sym_comma_expression] = STATE(1457), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(624), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_type_descriptor] = STATE(1456), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(624), - [sym_call_expression] = STATE(624), - [sym_field_expression] = STATE(624), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(624), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), - [sym_macro_type_specifier] = STATE(886), - [aux_sym_type_definition_repeat1] = STATE(875), - [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_type_qualifier] = STATE(879), + [sym__type_specifier] = STATE(966), + [sym_sized_type_specifier] = STATE(899), + [sym_enum_specifier] = STATE(899), + [sym_struct_specifier] = STATE(899), + [sym_union_specifier] = STATE(899), + [sym__expression] = STATE(757), + [sym_comma_expression] = STATE(1432), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(625), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_type_descriptor] = STATE(1362), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(625), + [sym_call_expression] = STATE(625), + [sym_field_expression] = STATE(625), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(625), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), + [sym_macro_type_specifier] = STATE(899), + [aux_sym_type_definition_repeat1] = STATE(879), + [aux_sym_sized_type_specifier_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -47104,9 +47224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1369), [sym_primitive_type] = ACTIONS(1369), [anon_sym_enum] = ACTIONS(1369), + [anon_sym_COLON] = ACTIONS(1371), [anon_sym_struct] = ACTIONS(1369), [anon_sym_union] = ACTIONS(1369), - [anon_sym_COLON] = ACTIONS(1371), [anon_sym_if] = ACTIONS(1369), [anon_sym_switch] = ACTIONS(1369), [anon_sym_case] = ACTIONS(1369), @@ -47174,9 +47294,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1373), [sym_primitive_type] = ACTIONS(1373), [anon_sym_enum] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(1375), [anon_sym_struct] = ACTIONS(1373), [anon_sym_union] = ACTIONS(1373), - [anon_sym_COLON] = ACTIONS(1375), [anon_sym_if] = ACTIONS(1373), [anon_sym_switch] = ACTIONS(1373), [anon_sym_case] = ACTIONS(1373), @@ -47210,26 +47330,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [384] = { - [sym__expression] = STATE(636), - [sym_conditional_expression] = STATE(595), - [sym_assignment_expression] = STATE(595), - [sym_pointer_expression] = STATE(653), - [sym_unary_expression] = STATE(595), - [sym_binary_expression] = STATE(595), - [sym_update_expression] = STATE(595), - [sym_cast_expression] = STATE(595), - [sym_sizeof_expression] = STATE(595), - [sym_offsetof_expression] = STATE(595), - [sym_generic_expression] = STATE(595), - [sym_subscript_expression] = STATE(653), - [sym_call_expression] = STATE(653), - [sym_field_expression] = STATE(653), - [sym_compound_literal_expression] = STATE(595), - [sym_parenthesized_expression] = STATE(653), - [sym_initializer_list] = STATE(589), - [sym_char_literal] = STATE(595), - [sym_concatenated_string] = STATE(595), - [sym_string_literal] = STATE(432), + [sym__expression] = STATE(648), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_pointer_expression] = STATE(655), + [sym_unary_expression] = STATE(600), + [sym_binary_expression] = STATE(600), + [sym_update_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_offsetof_expression] = STATE(600), + [sym_generic_expression] = STATE(600), + [sym_subscript_expression] = STATE(655), + [sym_call_expression] = STATE(655), + [sym_field_expression] = STATE(655), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(655), + [sym_initializer_list] = STATE(591), + [sym_char_literal] = STATE(600), + [sym_concatenated_string] = STATE(600), + [sym_string_literal] = STATE(437), [sym_identifier] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1379), [anon_sym_BANG] = ACTIONS(1381), @@ -47243,7 +47363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(888), [anon_sym_PIPE] = ACTIONS(898), [anon_sym_CARET] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1050), [anon_sym_EQ_EQ] = ACTIONS(888), [anon_sym_BANG_EQ] = ACTIONS(888), [anon_sym_GT] = ACTIONS(898), @@ -47383,21 +47503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___based, ACTIONS(1415), 1, anon_sym_LBRACK, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(938), 1, + STATE(949), 1, sym__declaration_specifiers, - STATE(1110), 1, + STATE(1114), 1, sym__declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(1159), 1, + STATE(1153), 1, sym__abstract_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1201), 2, + STATE(1179), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -47405,7 +47525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -47416,13 +47536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -47474,16 +47594,267 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1431), 1, sym_preproc_directive, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, + sym__declaration_specifiers, + ACTIONS(1425), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1446), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(899), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(390), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [307] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + ACTIONS(1419), 1, + aux_sym_preproc_def_token1, + ACTIONS(1421), 1, + aux_sym_preproc_if_token1, + ACTIONS(1427), 1, + aux_sym_preproc_else_token1, + ACTIONS(1429), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1431), 1, + sym_preproc_directive, + ACTIONS(1433), 1, + aux_sym_preproc_if_token2, + STATE(708), 1, + sym__type_specifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1033), 1, + sym__declaration_specifiers, + ACTIONS(1425), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1454), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(899), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(395), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [417] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1435), 1, + anon_sym_COMMA, + ACTIONS(1437), 1, + anon_sym_RBRACE, + ACTIONS(1439), 1, + anon_sym_LBRACK, + ACTIONS(1441), 1, + anon_sym_DOT, + STATE(437), 1, + sym_string_literal, + STATE(707), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(1214), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + STATE(1130), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(625), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [525] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + ACTIONS(1419), 1, + aux_sym_preproc_def_token1, + ACTIONS(1421), 1, + aux_sym_preproc_if_token1, + ACTIONS(1427), 1, + aux_sym_preproc_else_token1, + ACTIONS(1429), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1431), 1, + sym_preproc_directive, + ACTIONS(1443), 1, + aux_sym_preproc_if_token2, + STATE(708), 1, + sym__type_specifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1447), 2, + STATE(1434), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47497,7 +47868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47527,257 +47898,6 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [307] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - aux_sym_preproc_def_token1, - ACTIONS(1421), 1, - aux_sym_preproc_if_token1, - ACTIONS(1427), 1, - aux_sym_preproc_else_token1, - ACTIONS(1429), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1431), 1, - sym_preproc_directive, - ACTIONS(1433), 1, - aux_sym_preproc_if_token2, - STATE(702), 1, - sym__type_specifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, - sym__declaration_specifiers, - ACTIONS(1425), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1432), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(886), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(654), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(424), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [417] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(900), 1, - anon_sym_LBRACE, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1435), 1, - anon_sym_COMMA, - ACTIONS(1437), 1, - anon_sym_RBRACE, - ACTIONS(1439), 1, - anon_sym_LBRACK, - ACTIONS(1441), 1, - anon_sym_DOT, - STATE(432), 1, - sym_string_literal, - STATE(733), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1193), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - STATE(1120), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [525] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1419), 1, - aux_sym_preproc_def_token1, - ACTIONS(1421), 1, - aux_sym_preproc_if_token1, - ACTIONS(1427), 1, - aux_sym_preproc_else_token1, - ACTIONS(1429), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1431), 1, - sym_preproc_directive, - ACTIONS(1443), 1, - aux_sym_preproc_if_token2, - STATE(702), 1, - sym__type_specifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, - sym__declaration_specifiers, - ACTIONS(1425), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1480), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(886), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(654), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(387), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, [635] = 26, ACTIONS(3), 1, sym_comment, @@ -47809,16 +47929,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1445), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1360), 2, + STATE(1363), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47832,7 +47952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47853,7 +47973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(397), 8, + STATE(398), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47893,16 +48013,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1447), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1361), 2, + STATE(1334), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47916,7 +48036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47977,16 +48097,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1449), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1406), 2, + STATE(1439), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48000,7 +48120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48061,16 +48181,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1451), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1317), 2, + STATE(1437), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48084,7 +48204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48105,7 +48225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(392), 8, + STATE(401), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48145,16 +48265,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1453), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1454), 2, + STATE(1468), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48168,7 +48288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48189,7 +48309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(388), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48229,16 +48349,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1455), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1403), 2, + STATE(1377), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48252,7 +48372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48273,7 +48393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(393), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48313,16 +48433,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1457), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1387), 2, + STATE(1376), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48336,7 +48456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48357,7 +48477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(424), 8, + STATE(393), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48397,16 +48517,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1459), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1356), 2, + STATE(1357), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48420,7 +48540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48441,7 +48561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(401), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48481,16 +48601,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1461), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1304), 2, + STATE(1355), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48504,7 +48624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48525,7 +48645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(424), 8, + STATE(396), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48565,16 +48685,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1463), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1306), 2, + STATE(1371), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48588,7 +48708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48609,7 +48729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(399), 8, + STATE(392), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48649,16 +48769,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1465), 1, aux_sym_preproc_if_token2, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1329), 2, + STATE(1424), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48672,7 +48792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48702,74 +48822,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1845] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - anon_sym_STAR, - ACTIONS(1480), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(1484), 1, - anon_sym_COLON, - ACTIONS(1486), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1469), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1467), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [1922] = 22, + [1845] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -48786,13 +48839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1488), 1, + ACTIONS(1467), 1, anon_sym_STAR, - ACTIONS(1490), 1, + ACTIONS(1469), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(846), 1, + STATE(812), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -48803,7 +48856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(408), 2, + STATE(414), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(93), 3, @@ -48822,20 +48875,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48848,56 +48901,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2023] = 24, + [1946] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(900), 1, - anon_sym_LBRACE, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1439), 1, - anon_sym_LBRACK, - ACTIONS(1441), 1, - anon_sym_DOT, - ACTIONS(1494), 1, - anon_sym_RBRACE, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_AMP, + ACTIONS(1389), 1, + anon_sym_sizeof, + ACTIONS(1473), 1, + anon_sym_STAR, + ACTIONS(1475), 1, + anon_sym_RBRACK, + STATE(437), 1, sym_string_literal, - STATE(803), 1, + STATE(834), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1265), 2, - sym_initializer_list, - sym_initializer_pair, + STATE(658), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1120), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -48910,13 +48954,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + ACTIONS(1471), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48929,7 +48980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2128] = 22, + [2047] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -48946,13 +48997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1496), 1, + ACTIONS(1477), 1, anon_sym_STAR, - ACTIONS(1498), 1, + ACTIONS(1479), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(821), 1, + STATE(843), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -48982,20 +49033,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49008,20 +49059,22 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2229] = 10, + [2148] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1485), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1491), 1, anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(1494), 1, + anon_sym_SEMI, + ACTIONS(1497), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1500), 1, + ACTIONS(1501), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49032,20 +49085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1469), 13, + ACTIONS(1483), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -49053,13 +49093,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1467), 15, + ACTIONS(1489), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1481), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -49075,7 +49127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [2306] = 22, + [2227] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49092,13 +49144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1502), 1, + ACTIONS(1505), 1, anon_sym_STAR, - ACTIONS(1504), 1, + ACTIONS(1507), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(829), 1, + STATE(815), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -49109,7 +49161,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(405), 2, + STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(93), 3, @@ -49128,20 +49180,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49154,47 +49206,56 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2407] = 22, + [2328] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1385), 1, - anon_sym_AMP, - ACTIONS(1389), 1, - anon_sym_sizeof, - ACTIONS(1506), 1, - anon_sym_STAR, - ACTIONS(1508), 1, - anon_sym_RBRACK, - STATE(432), 1, + ACTIONS(1439), 1, + anon_sym_LBRACK, + ACTIONS(1441), 1, + anon_sym_DOT, + ACTIONS(1509), 1, + anon_sym_RBRACE, + STATE(437), 1, sym_string_literal, - STATE(828), 1, + STATE(781), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1387), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(658), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1276), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(93), 3, sym_true, sym_false, sym_null, + STATE(1130), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -49207,20 +49268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49233,22 +49287,89 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2508] = 11, + [2433] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1485), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1491), 1, anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(1497), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1484), 1, + ACTIONS(1511), 1, anon_sym_COLON, - ACTIONS(1510), 1, + ACTIONS(1503), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1489), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1483), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1481), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [2510] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 1, + anon_sym_LPAREN2, + ACTIONS(1491), 1, + anon_sym_STAR, + ACTIONS(1494), 1, anon_sym_SEMI, - ACTIONS(1486), 10, + ACTIONS(1497), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(1513), 1, + anon_sym_COLON, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49259,7 +49380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1469), 12, + ACTIONS(1483), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -49272,7 +49393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -49285,7 +49406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1467), 15, + ACTIONS(1481), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -49301,22 +49422,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [2587] = 11, + [2589] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1485), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1491), 1, anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(1497), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1510), 1, - anon_sym_SEMI, ACTIONS(1513), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1489), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1483), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1481), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [2666] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1377), 1, + sym_identifier, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_AMP, + ACTIONS(1389), 1, + anon_sym_sizeof, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1517), 1, + anon_sym_RBRACK, + STATE(437), 1, + sym_string_literal, + STATE(827), 1, + sym__expression, + ACTIONS(1381), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(658), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(655), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1471), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2767] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 1, + anon_sym_LPAREN2, + ACTIONS(1491), 1, + anon_sym_STAR, + ACTIONS(1494), 1, + anon_sym_SEMI, + ACTIONS(1497), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(1519), 1, + anon_sym_COLON, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49327,7 +49594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1469), 12, + ACTIONS(1483), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -49340,7 +49607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -49353,7 +49620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1467), 15, + ACTIONS(1481), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -49369,47 +49636,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [2666] = 22, + [2846] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1385), 1, - anon_sym_AMP, - ACTIONS(1389), 1, - anon_sym_sizeof, - ACTIONS(1515), 1, - anon_sym_STAR, - ACTIONS(1517), 1, - anon_sym_RBRACK, - STATE(432), 1, + ACTIONS(1439), 1, + anon_sym_LBRACK, + ACTIONS(1441), 1, + anon_sym_DOT, + ACTIONS(1521), 1, + anon_sym_RBRACE, + STATE(437), 1, sym_string_literal, - STATE(858), 1, + STATE(781), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1387), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(658), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1276), 2, + sym_initializer_list, + sym_initializer_pair, ACTIONS(93), 3, sym_true, sym_false, sym_null, + STATE(1130), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -49422,20 +49698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49448,7 +49717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2767] = 22, + [2951] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49465,13 +49734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(857), 1, + STATE(835), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -49501,20 +49770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49527,7 +49796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2868] = 22, + [3052] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49544,13 +49813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1523), 1, + ACTIONS(1527), 1, anon_sym_STAR, - ACTIONS(1525), 1, + ACTIONS(1529), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(854), 1, + STATE(823), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -49561,7 +49830,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(412), 2, + STATE(411), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(93), 3, @@ -49580,20 +49849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49606,20 +49875,20 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2969] = 10, + [3153] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1485), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1491), 1, anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(1497), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1527), 1, + ACTIONS(1519), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49630,7 +49899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -49643,7 +49912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1469), 13, + ACTIONS(1483), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -49657,7 +49926,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1467), 15, + ACTIONS(1481), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3230] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 1, + anon_sym_LPAREN2, + ACTIONS(1491), 1, + anon_sym_STAR, + ACTIONS(1494), 1, + anon_sym_SEMI, + ACTIONS(1497), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(1511), 1, + anon_sym_COLON, + ACTIONS(1503), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1483), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1489), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1481), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -49673,7 +50010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3046] = 22, + [3309] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49690,13 +50027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1529), 1, - anon_sym_STAR, ACTIONS(1531), 1, + anon_sym_STAR, + ACTIONS(1533), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(823), 1, + STATE(857), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -49707,7 +50044,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(411), 2, + STATE(404), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(93), 3, @@ -49726,101 +50063,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3147] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(900), 1, - anon_sym_LBRACE, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1439), 1, - anon_sym_LBRACK, - ACTIONS(1441), 1, - anon_sym_DOT, - ACTIONS(1533), 1, - anon_sym_RBRACE, - STATE(432), 1, - sym_string_literal, - STATE(803), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1265), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - STATE(1120), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49833,22 +50089,20 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3252] = 11, + [3410] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1485), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1491), 1, anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(1497), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1500), 1, + ACTIONS(1501), 1, anon_sym_COLON, - ACTIONS(1510), 1, - anon_sym_SEMI, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49859,20 +50113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1469), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -49885,49 +50126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1467), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3331] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - anon_sym_STAR, - ACTIONS(1480), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(1510), 1, - anon_sym_SEMI, - ACTIONS(1527), 1, - anon_sym_COLON, - ACTIONS(1486), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1469), 12, + ACTIONS(1483), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -49935,25 +50134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1467), 15, + ACTIONS(1481), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -49969,7 +50156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [3410] = 22, + [3487] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -49990,9 +50177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1537), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(838), 1, + STATE(813), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -50003,7 +50190,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(420), 2, + STATE(403), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(93), 3, @@ -50022,20 +50209,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50048,7 +50235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3511] = 22, + [3588] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -50069,9 +50256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1541), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(822), 1, + STATE(824), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -50082,7 +50269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(658), 2, + STATE(406), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(93), 3, @@ -50101,20 +50288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1492), 6, + ACTIONS(1471), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50127,139 +50314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3612] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - anon_sym_STAR, - ACTIONS(1480), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(1513), 1, - anon_sym_COLON, - ACTIONS(1486), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1469), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1467), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3689] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - anon_sym_STAR, - ACTIONS(1480), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(1486), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1469), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1467), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3763] = 23, + [3689] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -50280,9 +50335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1441), 1, anon_sym_DOT, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(803), 1, + STATE(781), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -50296,14 +50351,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1265), 2, + STATE(1276), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1120), 3, + STATE(1130), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -50319,13 +50374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50338,6 +50393,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, + [3791] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 1, + anon_sym_LPAREN2, + ACTIONS(1491), 1, + anon_sym_STAR, + ACTIONS(1497), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(1503), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1489), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1483), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1481), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, [3865] = 23, ACTIONS(3), 1, sym_comment, @@ -50363,11 +50483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(1587), 1, anon_sym_union, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1033), 1, sym__declaration_specifiers, ACTIONS(1554), 2, aux_sym_preproc_ifdef_token1, @@ -50387,7 +50507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50420,57 +50540,57 @@ static const uint16_t ts_small_parse_table[] = { [3967] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - sym_identifier, - ACTIONS(1552), 1, - aux_sym_preproc_if_token2, - ACTIONS(1563), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1566), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1569), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1578), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1581), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1584), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1587), 1, + ACTIONS(55), 1, anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, ACTIONS(1590), 1, aux_sym_preproc_def_token1, - ACTIONS(1593), 1, + ACTIONS(1592), 1, aux_sym_preproc_if_token1, - ACTIONS(1599), 1, + ACTIONS(1594), 1, + aux_sym_preproc_if_token2, + ACTIONS(1598), 1, sym_preproc_directive, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1023), 1, sym__declaration_specifiers, ACTIONS(1596), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1575), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1560), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1572), 6, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -50485,7 +50605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(425), 8, + STATE(426), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50513,21 +50633,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - ACTIONS(1602), 1, + ACTIONS(1590), 1, aux_sym_preproc_def_token1, - ACTIONS(1604), 1, + ACTIONS(1592), 1, aux_sym_preproc_if_token1, - ACTIONS(1608), 1, + ACTIONS(1598), 1, sym_preproc_directive, - ACTIONS(1610), 1, - anon_sym_RBRACE, - STATE(702), 1, + ACTIONS(1600), 1, + aux_sym_preproc_if_token2, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1018), 1, + STATE(1023), 1, sym__declaration_specifiers, - ACTIONS(1606), 2, + ACTIONS(1596), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -50541,7 +50661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50562,7 +50682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(428), 8, + STATE(430), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50574,57 +50694,57 @@ static const uint16_t ts_small_parse_table[] = { [4167] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1563), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1569), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1578), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1581), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1584), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1587), 1, anon_sym_union, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1612), 1, + ACTIONS(1602), 1, aux_sym_preproc_def_token1, - ACTIONS(1614), 1, + ACTIONS(1605), 1, aux_sym_preproc_if_token1, - ACTIONS(1616), 1, - aux_sym_preproc_if_token2, - ACTIONS(1620), 1, + ACTIONS(1611), 1, sym_preproc_directive, - STATE(702), 1, + ACTIONS(1614), 1, + anon_sym_RBRACE, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1618), 2, + ACTIONS(1608), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, + ACTIONS(1575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1560), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(1572), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -50639,7 +50759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(429), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50651,57 +50771,57 @@ static const uint16_t ts_small_parse_table[] = { [4267] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - sym_identifier, - ACTIONS(1563), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1566), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1569), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1578), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1581), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1584), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1587), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1622), 1, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + ACTIONS(1616), 1, aux_sym_preproc_def_token1, - ACTIONS(1625), 1, + ACTIONS(1618), 1, aux_sym_preproc_if_token1, - ACTIONS(1631), 1, + ACTIONS(1622), 1, sym_preproc_directive, - ACTIONS(1634), 1, + ACTIONS(1624), 1, anon_sym_RBRACE, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1018), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1628), 2, + ACTIONS(1620), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1575), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1560), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1572), 6, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -50716,7 +50836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(428), 8, + STATE(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50744,21 +50864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - ACTIONS(1612), 1, + ACTIONS(1616), 1, aux_sym_preproc_def_token1, - ACTIONS(1614), 1, + ACTIONS(1618), 1, aux_sym_preproc_if_token1, - ACTIONS(1620), 1, + ACTIONS(1622), 1, sym_preproc_directive, - ACTIONS(1636), 1, - aux_sym_preproc_if_token2, - STATE(702), 1, + ACTIONS(1626), 1, + anon_sym_RBRACE, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1618), 2, + ACTIONS(1620), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -50772,7 +50892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50793,7 +50913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(425), 8, + STATE(428), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50805,57 +50925,57 @@ static const uint16_t ts_small_parse_table[] = { [4467] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1552), 1, + aux_sym_preproc_if_token2, + ACTIONS(1563), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1569), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1578), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1581), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1584), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1587), 1, anon_sym_union, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1602), 1, + ACTIONS(1628), 1, aux_sym_preproc_def_token1, - ACTIONS(1604), 1, + ACTIONS(1631), 1, aux_sym_preproc_if_token1, - ACTIONS(1608), 1, + ACTIONS(1637), 1, sym_preproc_directive, - ACTIONS(1638), 1, - anon_sym_RBRACE, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1018), 1, + STATE(1023), 1, sym__declaration_specifiers, - ACTIONS(1606), 2, + ACTIONS(1634), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, + ACTIONS(1575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1560), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(1572), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -50870,7 +50990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(426), 8, + STATE(430), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50908,17 +51028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1642), 1, anon_sym_STAR, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(938), 1, + STATE(949), 1, sym__declaration_specifiers, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(1159), 1, + STATE(1153), 1, sym__abstract_declarator, - STATE(1201), 2, + STATE(1179), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -50926,7 +51046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -50937,7 +51057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50961,16 +51081,16 @@ static const uint16_t ts_small_parse_table[] = { [4672] = 5, ACTIONS(3), 1, sym_comment, - STATE(436), 2, + STATE(432), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, + ACTIONS(1648), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1475), 13, + ACTIONS(1646), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -50984,7 +51104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1469), 29, + ACTIONS(1644), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -51033,17 +51153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - ACTIONS(1644), 1, + ACTIONS(1651), 1, anon_sym_LBRACE, - STATE(640), 1, + STATE(632), 1, sym_ms_call_modifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1030), 1, + STATE(1024), 1, sym__declaration_specifiers, - STATE(364), 3, + STATE(332), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -51058,7 +51178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51089,16 +51209,16 @@ static const uint16_t ts_small_parse_table[] = { [4826] = 5, ACTIONS(3), 1, sym_comment, - STATE(434), 2, + STATE(432), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1650), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1648), 13, + ACTIONS(1655), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -51112,7 +51232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1646), 29, + ACTIONS(1653), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -51161,17 +51281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - ACTIONS(1653), 1, + ACTIONS(1657), 1, anon_sym_LBRACE, - STATE(631), 1, + STATE(633), 1, sym_ms_call_modifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1031), 1, + STATE(1028), 1, sym__declaration_specifiers, - STATE(319), 3, + STATE(339), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -51186,7 +51306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51214,63 +51334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4980] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(434), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1657), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1655), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [5041] = 21, + [4980] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -51291,15 +51355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(644), 1, + STATE(642), 1, sym_ms_call_modifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1020), 1, + STATE(1032), 1, sym__declaration_specifiers, - STATE(363), 3, + STATE(124), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -51314,7 +51378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51342,6 +51406,62 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, + [5073] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(434), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1489), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1483), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, [5134] = 21, ACTIONS(3), 1, sym_comment, @@ -51363,15 +51483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1661), 1, anon_sym_LBRACE, - STATE(652), 1, + STATE(634), 1, sym_ms_call_modifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1023), 1, + STATE(1017), 1, sym__declaration_specifiers, - STATE(122), 3, + STATE(327), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -51386,7 +51506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -51431,11 +51551,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1663), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(778), 1, + STATE(805), 1, sym__expression, - STATE(1350), 1, + STATE(1358), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51465,13 +51585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51501,11 +51621,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1665), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(793), 1, + STATE(785), 1, sym__expression, - STATE(1370), 1, + STATE(1304), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51535,13 +51655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51571,11 +51691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1667), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(801), 1, + STATE(782), 1, sym__expression, - STATE(1340), 1, + STATE(1445), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51605,13 +51725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51641,11 +51761,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1669), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(765), 1, + STATE(798), 1, sym__expression, - STATE(1395), 1, + STATE(1366), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51675,13 +51795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51710,12 +51830,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1367), 1, sym_identifier, ACTIONS(1671), 1, - anon_sym_RPAREN, - STATE(432), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(773), 1, + STATE(761), 1, sym__expression, - STATE(1313), 1, + STATE(1428), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51745,13 +51865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51781,11 +51901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1673), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(772), 1, + STATE(765), 1, sym__expression, - STATE(1311), 1, + STATE(1322), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51815,13 +51935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51851,11 +51971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1675), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(798), 1, + STATE(769), 1, sym__expression, - STATE(1300), 1, + STATE(1395), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51885,13 +52005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51921,361 +52041,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1677), 1, anon_sym_SEMI, - STATE(432), 1, - sym_string_literal, - STATE(791), 1, - sym__expression, - STATE(1427), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [5947] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1679), 1, - anon_sym_SEMI, - STATE(432), 1, - sym_string_literal, - STATE(761), 1, - sym__expression, - STATE(1424), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6037] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1681), 1, - anon_sym_SEMI, - STATE(432), 1, - sym_string_literal, - STATE(763), 1, - sym__expression, - STATE(1422), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6127] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(432), 1, - sym_string_literal, - STATE(808), 1, - sym__expression, - STATE(1309), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6217] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_RPAREN, - STATE(432), 1, - sym_string_literal, - STATE(769), 1, - sym__expression, - STATE(1467), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6307] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1687), 1, - anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(771), 1, + STATE(789), 1, sym__expression, - STATE(1460), 1, + STATE(1399), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52305,13 +52075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52324,7 +52094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6397] = 20, + [5947] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52339,13 +52109,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1689), 1, + ACTIONS(1679), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(770), 1, + STATE(800), 1, sym__expression, - STATE(1444), 1, + STATE(1404), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52375,13 +52145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52394,7 +52164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6487] = 20, + [6037] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52409,13 +52179,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1681), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(802), 1, + STATE(797), 1, sym__expression, - STATE(1348), 1, + STATE(1364), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52445,13 +52215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52464,7 +52234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6577] = 20, + [6127] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52477,15 +52247,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, + ACTIONS(900), 1, + anon_sym_LBRACE, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1693), 1, + STATE(437), 1, + sym_string_literal, + STATE(590), 1, + sym__expression, + STATE(591), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(625), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6217] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1683), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(794), 1, + STATE(764), 1, sym__expression, - STATE(1305), 1, + STATE(1412), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52515,13 +52355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52534,7 +52374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6667] = 20, + [6307] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52549,13 +52389,83 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1695), 1, + ACTIONS(1685), 1, + anon_sym_RPAREN, + STATE(437), 1, + sym_string_literal, + STATE(807), 1, + sym__expression, + STATE(1361), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(625), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6397] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1687), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(780), 1, + STATE(787), 1, sym__expression, - STATE(1383), 1, + STATE(1441), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52585,13 +52495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52604,7 +52514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6757] = 20, + [6487] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52619,13 +52529,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(806), 1, + STATE(796), 1, sym__expression, - STATE(1302), 1, + STATE(1315), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52655,13 +52565,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52674,7 +52584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6847] = 20, + [6577] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52689,13 +52599,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1699), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(1691), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(774), 1, + STATE(773), 1, sym__expression, - STATE(1446), 1, + STATE(1320), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52725,13 +52635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52744,7 +52654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6937] = 20, + [6667] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52757,16 +52667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(900), 1, - anon_sym_LBRACE, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1693), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(757), 1, + STATE(806), 1, sym__expression, - STATE(1269), 1, - sym_initializer_list, + STATE(1360), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52795,13 +52705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52814,7 +52724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7027] = 20, + [6757] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52829,13 +52739,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1701), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(776), 1, + STATE(778), 1, sym__expression, - STATE(1449), 1, + STATE(1317), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52865,13 +52775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52884,7 +52794,77 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7117] = 20, + [6847] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_RPAREN, + STATE(437), 1, + sym_string_literal, + STATE(763), 1, + sym__expression, + STATE(1325), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(625), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6937] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52901,12 +52881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(589), 1, - sym_initializer_list, - STATE(590), 1, + STATE(762), 1, sym__expression, + STATE(1263), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52935,13 +52915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52954,7 +52934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7207] = 20, + [7027] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52969,13 +52949,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1699), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(807), 1, + STATE(766), 1, sym__expression, - STATE(1310), 1, + STATE(1425), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53005,13 +52985,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53024,7 +53004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7297] = 20, + [7117] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53039,13 +53019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1705), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1701), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(813), 1, + STATE(756), 1, sym__expression, - STATE(1323), 1, + STATE(1450), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53075,13 +53055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53094,7 +53074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7387] = 20, + [7207] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53109,13 +53089,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1707), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1703), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(781), 1, + STATE(759), 1, sym__expression, - STATE(1443), 1, + STATE(1473), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53145,13 +53125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53164,7 +53144,77 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7477] = 20, + [7297] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(437), 1, + sym_string_literal, + STATE(591), 1, + sym_initializer_list, + STATE(648), 1, + sym__expression, + ACTIONS(1046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(589), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [7387] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53179,13 +53229,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1705), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(783), 1, + STATE(793), 1, sym__expression, - STATE(1442), 1, + STATE(1448), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53215,13 +53265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53234,7 +53284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7567] = 20, + [7477] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53249,13 +53299,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1711), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1707), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(799), 1, + STATE(755), 1, sym__expression, - STATE(1297), 1, + STATE(1447), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53285,13 +53335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53304,39 +53354,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7657] = 20, + [7567] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN2, - ACTIONS(900), 1, - anon_sym_LBRACE, - ACTIONS(904), 1, - anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1709), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(589), 1, - sym_initializer_list, - STATE(590), 1, + STATE(768), 1, sym__expression, + STATE(1423), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(894), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -53355,13 +53405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53374,7 +53424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7747] = 20, + [7657] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53389,13 +53439,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1713), 1, + ACTIONS(1711), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, STATE(784), 1, sym__expression, - STATE(1436), 1, + STATE(1443), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53425,13 +53475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53444,7 +53494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7837] = 20, + [7747] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53459,13 +53509,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1715), 1, + ACTIONS(1713), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(812), 1, + STATE(753), 1, sym__expression, - STATE(1394), 1, + STATE(1422), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53495,13 +53545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53514,7 +53564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7927] = 20, + [7837] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53529,13 +53579,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1717), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(1715), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(760), 1, + STATE(788), 1, sym__expression, - STATE(1386), 1, + STATE(1438), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53565,13 +53615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53584,39 +53634,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8017] = 20, + [7927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(890), 1, + anon_sym_LPAREN2, ACTIONS(900), 1, anon_sym_LBRACE, - ACTIONS(1367), 1, - sym_identifier, - STATE(432), 1, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(758), 1, + STATE(590), 1, sym__expression, - STATE(1234), 1, + STATE(591), 1, sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -53635,13 +53685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53654,7 +53704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8107] = 20, + [8017] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53669,13 +53719,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1719), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1717), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(811), 1, + STATE(792), 1, sym__expression, - STATE(1307), 1, + STATE(1308), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53705,13 +53755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53724,7 +53774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8197] = 20, + [8107] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53739,13 +53789,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1721), 1, + ACTIONS(1719), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(788), 1, + STATE(783), 1, sym__expression, - STATE(1426), 1, + STATE(1305), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53775,13 +53825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53794,7 +53844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8287] = 20, + [8197] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53809,13 +53859,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1723), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(1721), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(764), 1, + STATE(776), 1, sym__expression, - STATE(1439), 1, + STATE(1319), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53845,13 +53895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53864,39 +53914,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8377] = 20, + [8287] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1725), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(789), 1, + STATE(591), 1, + sym_initializer_list, + STATE(648), 1, sym__expression, - STATE(1316), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -53915,13 +53965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53934,41 +53984,41 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8467] = 20, + [8377] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(900), 1, - anon_sym_LBRACE, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1723), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(589), 1, - sym_initializer_list, - STATE(636), 1, + STATE(774), 1, sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, + STATE(1378), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -53985,13 +54035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54004,7 +54054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8557] = 20, + [8467] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54019,13 +54069,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1727), 1, + ACTIONS(1725), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(786), 1, + STATE(802), 1, sym__expression, - STATE(1351), 1, + STATE(1458), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54055,13 +54105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54074,7 +54124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8647] = 20, + [8557] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54089,13 +54139,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1729), 1, + ACTIONS(1727), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(767), 1, + STATE(775), 1, sym__expression, - STATE(1330), 1, + STATE(1380), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54125,13 +54175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54144,7 +54194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8737] = 20, + [8647] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54159,13 +54209,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1731), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(792), 1, + STATE(804), 1, sym__expression, - STATE(1312), 1, + STATE(1433), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54195,13 +54245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54214,7 +54264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8827] = 20, + [8737] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54229,13 +54279,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1731), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(775), 1, + STATE(794), 1, sym__expression, - STATE(1453), 1, + STATE(1341), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54265,13 +54315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54284,7 +54334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8917] = 20, + [8827] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54299,13 +54349,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1735), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1733), 1, + anon_sym_SEMI, + STATE(437), 1, sym_string_literal, - STATE(787), 1, + STATE(777), 1, sym__expression, - STATE(1293), 1, + STATE(1384), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54335,13 +54385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54354,39 +54404,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9007] = 20, + [8917] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(900), 1, - anon_sym_LBRACE, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(589), 1, - sym_initializer_list, - STATE(636), 1, + STATE(767), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + STATE(1411), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -54405,13 +54455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54424,7 +54474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9097] = 20, + [9007] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54440,12 +54490,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1367), 1, sym_identifier, ACTIONS(1737), 1, - anon_sym_SEMI, - STATE(432), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(762), 1, + STATE(810), 1, sym__expression, - STATE(1379), 1, + STATE(1429), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54475,13 +54525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54494,7 +54544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9187] = 20, + [9097] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54511,11 +54561,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1739), 1, anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(777), 1, + STATE(770), 1, sym__expression, - STATE(1371), 1, + STATE(1426), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54545,13 +54595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54564,7 +54614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9277] = 20, + [9187] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54580,12 +54630,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1367), 1, sym_identifier, ACTIONS(1741), 1, - anon_sym_SEMI, - STATE(432), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(759), 1, + STATE(786), 1, sym__expression, - STATE(1377), 1, + STATE(1354), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54615,13 +54665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54634,143 +54684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9367] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - ACTIONS(1743), 1, - anon_sym_RBRACK, - STATE(432), 1, - sym_string_literal, - STATE(634), 1, - sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(602), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [9454] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - ACTIONS(1745), 1, - anon_sym_RBRACK, - STATE(432), 1, - sym_string_literal, - STATE(634), 1, - sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(602), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [9541] = 19, + [9277] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54783,14 +54697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, + ACTIONS(900), 1, + anon_sym_LBRACE, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1747), 1, - anon_sym_RPAREN, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(755), 1, + STATE(760), 1, sym__expression, + STATE(1250), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54819,13 +54735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54838,39 +54754,107 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9628] = 19, + [9367] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1743), 1, + anon_sym_RBRACK, + STATE(437), 1, sym_string_literal, - STATE(716), 1, + STATE(630), 1, sym__expression, - STATE(1268), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(589), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [9454] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1745), 1, + anon_sym_RBRACK, + STATE(437), 1, + sym_string_literal, + STATE(630), 1, + sym__expression, + ACTIONS(1046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -54887,13 +54871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54906,10 +54890,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9715] = 3, + [9541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 13, + ACTIONS(1749), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54923,7 +54907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1749), 34, + ACTIONS(1747), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -54958,7 +54942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [9770] = 19, + [9596] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -54969,23 +54953,23 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1753), 1, + ACTIONS(1751), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(630), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -55007,13 +54991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55026,7 +55010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9857] = 19, + [9683] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -55037,23 +55021,23 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1755), 1, + ACTIONS(1753), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(630), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -55075,13 +55059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55094,39 +55078,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9944] = 19, + [9770] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(808), 1, sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, + STATE(1302), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -55143,13 +55127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55162,59 +55146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1759), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [10086] = 19, + [9857] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55229,12 +55161,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_COLON, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(827), 1, + STATE(757), 1, sym__expression, + STATE(1432), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -55263,13 +55195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55282,7 +55214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10173] = 19, + [9944] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -55293,23 +55225,23 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1765), 1, + ACTIONS(1755), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(630), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -55331,13 +55263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55350,7 +55282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10260] = 19, + [10031] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -55361,23 +55293,23 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(1767), 1, + ACTIONS(1757), 1, anon_sym_RBRACK, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(630), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -55399,13 +55331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55418,39 +55350,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10347] = 19, + [10118] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1759), 1, + anon_sym_RBRACK, + STATE(437), 1, sym_string_literal, - STATE(785), 1, + STATE(630), 1, sym__expression, - STATE(1435), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -55467,13 +55399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55486,39 +55418,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10434] = 19, + [10205] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - ACTIONS(1769), 1, - anon_sym_RBRACK, - STATE(432), 1, + ACTIONS(1761), 1, + anon_sym_COLON, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(840), 1, sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -55535,13 +55467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55554,7 +55486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10521] = 19, + [10292] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55569,11 +55501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1771), 1, + ACTIONS(1763), 1, anon_sym_COLON, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(814), 1, + STATE(838), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55603,13 +55535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55622,7 +55554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10608] = 19, + [10379] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55637,11 +55569,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - ACTIONS(1773), 1, - anon_sym_RPAREN, - STATE(432), 1, + ACTIONS(1765), 1, + anon_sym_COLON, + STATE(437), 1, sym_string_literal, - STATE(743), 1, + STATE(825), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55671,13 +55603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55690,107 +55622,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10695] = 19, + [10466] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(1120), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1775), 1, - anon_sym_RBRACK, - STATE(432), 1, - sym_string_literal, - STATE(634), 1, - sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(602), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [10782] = 19, - ACTIONS(3), 1, - sym_comment, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - ACTIONS(1777), 1, - anon_sym_RBRACK, - STATE(432), 1, + ACTIONS(1767), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(703), 1, sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -55807,13 +55671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55826,7 +55690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10869] = 19, + [10553] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55841,11 +55705,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(795), 1, + STATE(705), 1, sym__expression, - STATE(1457), 1, + STATE(1248), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55875,13 +55739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55894,39 +55758,39 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10956] = 19, + [10640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1779), 1, - anon_sym_COLON, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1769), 1, + anon_sym_RBRACK, + STATE(437), 1, sym_string_literal, - STATE(841), 1, + STATE(630), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -55943,13 +55807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55962,39 +55826,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11043] = 19, + [10727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1773), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1771), 34, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [10782] = 19, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1781), 1, - anon_sym_COLON, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, + anon_sym_RBRACK, + STATE(437), 1, sym_string_literal, - STATE(850), 1, + STATE(630), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -56011,13 +55927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56030,35 +55946,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11130] = 18, + [10869] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1777), 1, + anon_sym_RPAREN, + STATE(437), 1, sym_string_literal, - STATE(646), 1, + STATE(721), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -56077,13 +55995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56096,7 +56014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11214] = 18, + [10956] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56107,26 +56025,28 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1779), 1, + anon_sym_RBRACK, + STATE(437), 1, sym_string_literal, - STATE(609), 1, + STATE(630), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -56143,13 +56063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56162,7 +56082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11298] = 18, + [11043] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56177,9 +56097,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1781), 1, + anon_sym_COLON, + STATE(437), 1, sym_string_literal, - STATE(805), 1, + STATE(855), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56209,13 +56131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56228,7 +56150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11382] = 18, + [11130] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56239,26 +56161,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(643), 1, + STATE(609), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -56275,13 +56197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56294,7 +56216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11466] = 18, + [11214] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56303,28 +56225,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(817), 1, + STATE(650), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -56341,13 +56263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56360,35 +56282,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11550] = 18, + [11298] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(832), 1, + STATE(587), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -56407,13 +56329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56426,7 +56348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11634] = 18, + [11382] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56435,26 +56357,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(844), 1, + STATE(596), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -56473,13 +56395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56492,37 +56414,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11718] = 18, + [11466] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(630), 1, + STATE(799), 1, sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -56539,13 +56461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56558,7 +56480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11802] = 18, + [11550] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56573,9 +56495,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(613), 1, + STATE(682), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56605,13 +56527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56624,35 +56546,101 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11886] = 18, + [11634] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(835), 1, + STATE(837), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(625), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [11718] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + STATE(437), 1, + sym_string_literal, + STATE(599), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -56671,13 +56659,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56690,37 +56678,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11970] = 18, + [11802] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1783), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(641), 1, + STATE(680), 1, sym__expression, - ACTIONS(1122), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -56737,13 +56725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56756,7 +56744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12054] = 18, + [11886] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56767,26 +56755,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(639), 1, + STATE(615), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -56803,13 +56791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56822,7 +56810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12138] = 18, + [11970] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56833,26 +56821,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(650), 1, + STATE(603), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -56869,13 +56857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56888,35 +56876,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12222] = 18, + [12054] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(815), 1, + STATE(614), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -56935,13 +56923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56954,35 +56942,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12306] = 18, + [12138] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1389), 1, + anon_sym_sizeof, + ACTIONS(1785), 1, + anon_sym_LPAREN2, + STATE(437), 1, sym_string_literal, - STATE(819), 1, + STATE(852), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -57001,13 +56989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57020,7 +57008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12390] = 18, + [12222] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57029,28 +57017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(651), 1, + STATE(631), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -57067,13 +57055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57086,7 +57074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12474] = 18, + [12306] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57097,26 +57085,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(632), 1, + STATE(613), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -57133,13 +57121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57152,7 +57140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12558] = 18, + [12390] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57167,9 +57155,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(619), 1, + STATE(779), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57199,13 +57187,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57218,7 +57206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12642] = 18, + [12474] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57229,21 +57217,21 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(646), 1, + STATE(651), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -57265,13 +57253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57284,73 +57272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12726] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1783), 1, - anon_sym_LPAREN2, - STATE(432), 1, - sym_string_literal, - STATE(684), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [12810] = 18, + [12558] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57361,21 +57283,21 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1130), 1, - anon_sym_sizeof, - ACTIONS(1785), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - STATE(432), 1, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(642), 1, + STATE(630), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -57397,13 +57319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57416,7 +57338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12894] = 18, + [12642] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57427,26 +57349,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(638), 1, + STATE(612), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -57463,13 +57385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57482,7 +57404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12978] = 18, + [12726] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57491,26 +57413,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(836), 1, + STATE(611), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -57529,13 +57451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57548,7 +57470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13062] = 18, + [12810] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57563,9 +57485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(839), 1, + STATE(637), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -57595,13 +57517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57614,7 +57536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13146] = 18, + [12894] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57629,9 +57551,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(779), 1, + STATE(841), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57661,13 +57583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57680,7 +57602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13230] = 18, + [12978] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57689,28 +57611,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(637), 1, + STATE(850), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -57727,13 +57649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57746,7 +57668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13314] = 18, + [13062] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57755,26 +57677,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(848), 1, + STATE(610), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -57793,13 +57715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57812,35 +57734,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13398] = 18, + [13146] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1389), 1, - anon_sym_sizeof, - ACTIONS(1787), 1, - anon_sym_LPAREN2, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(825), 1, + STATE(811), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -57859,13 +57781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57878,7 +57800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13482] = 18, + [13230] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -57889,26 +57811,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(645), 1, + STATE(587), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -57925,13 +57847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57944,7 +57866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13566] = 18, + [13314] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57959,9 +57881,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(683), 1, + STATE(819), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57991,13 +57913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58010,7 +57932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13650] = 18, + [13398] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58021,13 +57943,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, + ACTIONS(890), 1, + anon_sym_LPAREN2, ACTIONS(904), 1, anon_sym_sizeof, - ACTIONS(1789), 1, - anon_sym_LPAREN2, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(585), 1, + STATE(608), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -58057,13 +57979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58076,7 +57998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13734] = 18, + [13482] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58087,21 +58009,21 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, - anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(437), 1, sym_string_literal, - STATE(635), 1, + STATE(647), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -58123,13 +58045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58142,7 +58064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13818] = 18, + [13566] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58153,21 +58075,21 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(634), 1, + STATE(631), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -58189,13 +58111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58208,7 +58130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13902] = 18, + [13650] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58223,9 +58145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(587), 1, + STATE(599), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -58255,13 +58177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58274,7 +58196,73 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13986] = 18, + [13734] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(437), 1, + sym_string_literal, + STATE(607), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(589), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13818] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -58289,9 +58277,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(845), 1, + STATE(839), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -58321,13 +58309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58340,7 +58328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14070] = 18, + [13902] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58349,26 +58337,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + ACTIONS(1789), 1, + anon_sym_LPAREN2, + STATE(437), 1, sym_string_literal, - STATE(853), 1, + STATE(602), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -58387,13 +58375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58406,7 +58394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14154] = 18, + [13986] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58415,28 +58403,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(638), 1, + STATE(637), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(589), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [14070] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(437), 1, + sym_string_literal, + STATE(635), 1, + sym__expression, + ACTIONS(1046), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -58453,13 +58507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58472,7 +58526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14238] = 18, + [14154] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58487,9 +58541,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(904), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(610), 1, + STATE(584), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -58519,13 +58573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58538,35 +58592,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14322] = 18, + [14238] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(651), 1, + STATE(677), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -58585,13 +58639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58604,7 +58658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14406] = 18, + [14322] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58615,26 +58669,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(612), 1, + STATE(643), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -58651,13 +58705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58670,35 +58724,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14490] = 18, + [14406] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(782), 1, + STATE(848), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -58717,13 +58771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58736,7 +58790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14574] = 18, + [14490] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58745,28 +58799,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1379), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1389), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(860), 1, + STATE(649), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1052), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -58783,13 +58837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58802,37 +58856,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14658] = 18, + [14574] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(664), 1, + STATE(646), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -58849,13 +58903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58868,37 +58922,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14742] = 18, + [14658] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(681), 1, + STATE(645), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -58915,13 +58969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58934,7 +58988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14826] = 18, + [14742] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58945,21 +58999,21 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(633), 1, + STATE(644), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1385), 2, @@ -58981,13 +59035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59000,7 +59054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14910] = 18, + [14826] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59011,26 +59065,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(588), 1, + STATE(641), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -59047,13 +59101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59066,35 +59120,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14994] = 18, + [14910] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN2, - ACTIONS(904), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(608), 1, + STATE(818), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(894), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59113,13 +59167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59132,7 +59186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15078] = 18, + [14994] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59147,9 +59201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(856), 1, + STATE(826), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -59179,13 +59233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59198,7 +59252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15162] = 18, + [15078] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59213,9 +59267,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(686), 1, + STATE(791), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59245,13 +59299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59264,35 +59318,101 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15246] = 18, + [15162] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(842), 1, + STATE(603), 1, sym__expression, - ACTIONS(1381), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(625), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [15246] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + STATE(437), 1, + sym_string_literal, + STATE(693), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59311,13 +59431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59333,32 +59453,32 @@ static const uint16_t ts_small_parse_table[] = { [15330] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1377), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1379), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(847), 1, + STATE(692), 1, sym__expression, - ACTIONS(1381), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1383), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1385), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1387), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59377,13 +59497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59399,32 +59519,32 @@ static const uint16_t ts_small_parse_table[] = { [15414] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN2, - ACTIONS(904), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(607), 1, + STATE(691), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(894), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59443,13 +59563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59477,9 +59597,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(826), 1, + STATE(690), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59509,13 +59629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59543,7 +59663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, STATE(816), 1, sym__expression, @@ -59575,13 +59695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59609,9 +59729,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(678), 1, + STATE(689), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59641,13 +59761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59675,9 +59795,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(820), 1, + STATE(688), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59707,13 +59827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59735,26 +59855,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(604), 1, + STATE(817), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59773,13 +59893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59795,32 +59915,32 @@ static const uint16_t ts_small_parse_table[] = { [15918] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN2, - ACTIONS(904), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(618), 1, + STATE(687), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(894), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59839,13 +59959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59861,32 +59981,32 @@ static const uint16_t ts_small_parse_table[] = { [16002] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN2, - ACTIONS(904), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(601), 1, + STATE(684), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(894), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59905,13 +60025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59933,26 +60053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(613), 1, + STATE(829), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -59971,13 +60091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60005,9 +60125,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1367), 1, sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(694), 1, + STATE(738), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60037,13 +60157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60059,100 +60179,34 @@ static const uint16_t ts_small_parse_table[] = { [16254] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, - sym_string_literal, - STATE(824), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(624), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(595), 12, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16338] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(87), 1, - sym_number_literal, - ACTIONS(1367), 1, - sym_identifier, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(735), 1, + STATE(640), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -60169,13 +60223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60188,7 +60242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16422] = 18, + [16338] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60197,26 +60251,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(599), 1, + STATE(651), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60235,13 +60289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60254,7 +60308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16506] = 18, + [16422] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60269,9 +60323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(830), 1, + STATE(820), 1, sym__expression, ACTIONS(1381), 2, anon_sym_DASH, @@ -60301,13 +60355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(653), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60320,7 +60374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16590] = 18, + [16506] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60329,26 +60383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(598), 1, + STATE(851), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60367,13 +60421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60386,35 +60440,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16674] = 18, + [16590] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(688), 1, + STATE(831), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60433,13 +60487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60452,7 +60506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16758] = 18, + [16674] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60461,28 +60515,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1120), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1130), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(648), 1, + STATE(846), 1, sym__expression, - ACTIONS(1122), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1124), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1128), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1385), 2, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(655), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(600), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16758] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + STATE(437), 1, + sym_string_literal, + STATE(694), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, sym_true, sym_false, @@ -60499,13 +60619,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60529,26 +60649,26 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(886), 1, sym_identifier, - ACTIONS(890), 1, + ACTIONS(1044), 1, anon_sym_LPAREN2, - ACTIONS(904), 1, + ACTIONS(1054), 1, anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(619), 1, + STATE(639), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(892), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(894), 2, + ACTIONS(1048), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -60565,13 +60685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60587,34 +60707,34 @@ static const uint16_t ts_small_parse_table[] = { [16926] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1044), 1, + anon_sym_LPAREN2, + ACTIONS(1054), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(672), 1, + STATE(638), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1046), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1048), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1052), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, sym_true, sym_false, @@ -60631,13 +60751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60653,32 +60773,32 @@ static const uint16_t ts_small_parse_table[] = { [17010] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(587), 1, + STATE(842), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60697,13 +60817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60719,32 +60839,32 @@ static const uint16_t ts_small_parse_table[] = { [17094] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(676), 1, + STATE(854), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60763,13 +60883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60785,32 +60905,32 @@ static const uint16_t ts_small_parse_table[] = { [17178] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(677), 1, + STATE(853), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60829,13 +60949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60851,32 +60971,32 @@ static const uint16_t ts_small_parse_table[] = { [17262] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(886), 1, sym_identifier, - STATE(432), 1, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(679), 1, + STATE(593), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60895,13 +61015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(589), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60917,32 +61037,32 @@ static const uint16_t ts_small_parse_table[] = { [17346] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(1367), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(432), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(437), 1, sym_string_literal, - STATE(680), 1, + STATE(847), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -60961,13 +61081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(624), 5, + STATE(655), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60983,32 +61103,32 @@ static const uint16_t ts_small_parse_table[] = { [17430] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(87), 1, sym_number_literal, - ACTIONS(886), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN2, - ACTIONS(904), 1, - anon_sym_sizeof, - STATE(432), 1, + STATE(437), 1, sym_string_literal, - STATE(591), 1, + STATE(685), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(894), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(902), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -61027,13 +61147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(602), 5, + STATE(625), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(595), 12, + STATE(600), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61049,23 +61169,23 @@ static const uint16_t ts_small_parse_table[] = { [17514] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1485), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1491), 1, anon_sym_STAR, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1510), 2, + ACTIONS(1494), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(1480), 6, + ACTIONS(1497), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -61076,7 +61196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 11, + ACTIONS(1489), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -61088,7 +61208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1469), 12, + ACTIONS(1483), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -61149,39 +61269,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17629] = 3, + [17629] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1805), 1, + anon_sym_AMP_AMP, + ACTIONS(1807), 1, anon_sym_PIPE, + ACTIONS(1809), 1, anon_sym_CARET, + ACTIONS(1811), 1, anon_sym_AMP, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1825), 1, + anon_sym_QMARK, + STATE(595), 1, + sym_argument_list, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1817), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1795), 29, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1801), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1795), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -61192,45 +61333,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [17679] = 11, + [17713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1833), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1807), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1799), 22, + ACTIONS(1831), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61239,6 +61362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61251,10 +61376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17745] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 13, + ACTIONS(1837), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61268,7 +61397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1817), 29, + ACTIONS(1835), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61298,22 +61427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17795] = 8, + [17813] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1823), 13, + ACTIONS(1841), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61327,7 +61453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 22, + ACTIONS(1839), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -61350,74 +61476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17855] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1829), 1, - anon_sym_AMP_AMP, - ACTIONS(1831), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_CARET, - ACTIONS(1835), 1, - anon_sym_AMP, - ACTIONS(1843), 1, - anon_sym_EQ, - ACTIONS(1845), 1, - anon_sym_QMARK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1839), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1805), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1825), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [17939] = 3, + [17871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 13, + ACTIONS(1845), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61431,7 +61495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1847), 29, + ACTIONS(1843), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61461,22 +61525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17989] = 8, + [17921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1853), 13, + ACTIONS(1489), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61490,9 +61542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1851), 22, + ACTIONS(1483), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61501,6 +61554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61513,22 +61568,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18049] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17971] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1857), 13, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61542,7 +61601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1855), 22, + ACTIONS(1847), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -61565,10 +61624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18109] = 3, + [18031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 13, + ACTIONS(1853), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61582,7 +61641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1859), 29, + ACTIONS(1851), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61612,10 +61671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18159] = 3, + [18081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 13, + ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61629,7 +61688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1863), 29, + ACTIONS(1855), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61659,86 +61718,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18209] = 3, + [18131] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1805), 1, + anon_sym_AMP_AMP, + ACTIONS(1807), 1, anon_sym_PIPE, + ACTIONS(1809), 1, anon_sym_CARET, + ACTIONS(1811), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, + anon_sym_QMARK, + ACTIONS(1861), 1, anon_sym_EQ, - ACTIONS(1867), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(595), 1, + sym_argument_list, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1813), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1815), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1817), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - [18259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1469), 29, + ACTIONS(1859), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -61749,14 +61782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18309] = 3, + [18215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 13, + ACTIONS(1865), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61770,7 +61799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1871), 29, + ACTIONS(1863), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61800,10 +61829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18359] = 3, + [18265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1869), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61817,7 +61846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1875), 29, + ACTIONS(1867), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61847,29 +61876,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18409] = 10, + [18315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1805), 3, + ACTIONS(1873), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -61878,7 +61905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 22, + ACTIONS(1871), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -61901,41 +61928,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18473] = 11, + [18375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1877), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 22, + ACTIONS(1875), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61944,6 +61957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61956,7 +61971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18539] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18425] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1881), 13, @@ -62003,49 +62022,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18589] = 13, + [18475] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1839), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1805), 3, + ACTIONS(1885), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 20, + ACTIONS(1883), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62060,10 +62074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18659] = 3, + [18535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 13, + ACTIONS(1489), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62077,7 +62091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1469), 29, + ACTIONS(1483), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -62107,10 +62121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18709] = 3, + [18585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 13, + ACTIONS(1889), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62124,7 +62138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1883), 29, + ACTIONS(1887), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -62135,9 +62149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62154,50 +62168,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18759] = 14, + [18635] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1839), 2, + ACTIONS(1801), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1893), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1841), 2, + anon_sym_EQ, + ACTIONS(1891), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1805), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [18701] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1897), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 18, + ACTIONS(1895), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62212,10 +62275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18831] = 3, + [18761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1901), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62229,7 +62292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1887), 29, + ACTIONS(1899), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -62259,10 +62322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18881] = 3, + [18811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 13, + ACTIONS(1905), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62276,7 +62339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1891), 29, + ACTIONS(1903), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -62306,53 +62369,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18931] = 15, + [18861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1835), 1, - anon_sym_AMP, - STATE(597), 1, - sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1909), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1839), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 3, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 18, + ACTIONS(1907), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62365,52 +62412,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19005] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18911] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_CARET, - ACTIONS(1835), 1, - anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1823), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1839), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1805), 3, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 18, + ACTIONS(1897), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1895), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62425,53 +62470,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19081] = 17, + [18975] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1823), 1, - anon_sym_EQ, - ACTIONS(1831), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_CARET, - ACTIONS(1835), 1, - anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1839), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1805), 3, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 18, + ACTIONS(1897), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1895), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62486,54 +62525,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19159] = 18, + [19041] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1823), 1, - anon_sym_EQ, - ACTIONS(1829), 1, - anon_sym_AMP_AMP, - ACTIONS(1831), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_CARET, - ACTIONS(1835), 1, - anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, + ACTIONS(1815), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1817), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1837), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1839), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1805), 3, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 17, + ACTIONS(1897), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1895), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62548,37 +62582,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19239] = 3, + [19111] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 13, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + STATE(595), 1, + sym_argument_list, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1817), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1897), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1895), 29, + ACTIONS(1895), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62591,49 +62640,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19289] = 9, + [19183] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, ACTIONS(1811), 1, + anon_sym_AMP, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1817), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1805), 3, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1897), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 22, + ACTIONS(1895), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62648,41 +62699,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19351] = 7, + [19257] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, + ACTIONS(1809), 1, + anon_sym_CARET, ACTIONS(1811), 1, + anon_sym_AMP, + ACTIONS(1821), 1, anon_sym_LBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1901), 13, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1817), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1897), 2, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1899), 24, + ACTIONS(1801), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1895), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62697,57 +62759,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [19409] = 19, + [19333] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1829), 1, - anon_sym_AMP_AMP, - ACTIONS(1831), 1, + ACTIONS(1807), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1809), 1, anon_sym_CARET, - ACTIONS(1835), 1, + ACTIONS(1811), 1, anon_sym_AMP, - ACTIONS(1905), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1897), 1, anon_sym_EQ, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 2, + ACTIONS(1815), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1841), 2, + ACTIONS(1817), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1805), 3, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1903), 16, + ACTIONS(1895), 18, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -62762,37 +62820,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19491] = 3, + [19411] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1805), 1, + anon_sym_AMP_AMP, + ACTIONS(1807), 1, anon_sym_PIPE, + ACTIONS(1809), 1, anon_sym_CARET, + ACTIONS(1811), 1, anon_sym_AMP, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1897), 1, + anon_sym_EQ, + STATE(595), 1, + sym_argument_list, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1817), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1907), 29, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1801), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1895), 17, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62805,19 +62882,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [19491] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - [19541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1897), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -62826,10 +62912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1911), 29, + ACTIONS(1895), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -62838,8 +62923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62852,14 +62935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19591] = 3, + [19553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(1913), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62873,7 +62952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1915), 29, + ACTIONS(1911), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -62884,9 +62963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62903,60 +62982,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19641] = 20, + [19603] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1827), 1, + ACTIONS(1803), 1, anon_sym_PIPE_PIPE, - ACTIONS(1829), 1, + ACTIONS(1805), 1, anon_sym_AMP_AMP, - ACTIONS(1831), 1, + ACTIONS(1807), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1809), 1, anon_sym_CARET, - ACTIONS(1835), 1, + ACTIONS(1811), 1, anon_sym_AMP, - ACTIONS(1845), 1, - anon_sym_QMARK, - ACTIONS(1921), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1917), 1, anon_sym_EQ, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1803), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1809), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 2, + ACTIONS(1815), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1841), 2, + ACTIONS(1817), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1805), 3, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1801), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1919), 15, + ACTIONS(1915), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62967,22 +63045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19725] = 8, + [19685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1925), 13, + ACTIONS(1921), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62996,94 +63062,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1923), 22, + ACTIONS(1919), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [19785] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1405), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1407), 1, - anon_sym_RPAREN, - ACTIONS(1417), 1, - sym_identifier, - STATE(702), 1, - sym__type_specifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(938), 1, - sym__declaration_specifiers, - STATE(1201), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(886), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(654), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [19869] = 19, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19735] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63102,15 +63111,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1405), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1407), 1, + anon_sym_RPAREN, ACTIONS(1417), 1, sym_identifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(938), 1, + STATE(949), 1, sym__declaration_specifiers, - STATE(1238), 2, + STATE(1179), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -63124,7 +63135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63145,10 +63156,57 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19950] = 3, + [19819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 20, + ACTIONS(1925), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1923), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -63169,7 +63227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1791), 21, + ACTIONS(1371), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -63191,7 +63249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [19999] = 3, + [19918] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1373), 20, @@ -63237,58 +63295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [20048] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(1486), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1469), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20101] = 3, + [19967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 20, + ACTIONS(1793), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -63309,7 +63319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1371), 21, + ACTIONS(1791), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -63331,14 +63341,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + [20016] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1405), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1417), 1, + sym_identifier, + STATE(708), 1, + sym__type_specifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(949), 1, + sym__declaration_specifiers, + STATE(1245), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(899), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [20097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(1503), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1489), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1483), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, [20150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1513), 1, + ACTIONS(1501), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63349,7 +63469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63362,7 +63482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1469), 15, + ACTIONS(1483), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -63381,11 +63501,11 @@ static const uint16_t ts_small_parse_table[] = { [20203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1527), 1, + ACTIONS(1519), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63396,7 +63516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63409,7 +63529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1469), 15, + ACTIONS(1483), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -63428,11 +63548,11 @@ static const uint16_t ts_small_parse_table[] = { [20256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1500), 1, + ACTIONS(1513), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63443,7 +63563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63456,7 +63576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1469), 15, + ACTIONS(1483), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -63475,11 +63595,11 @@ static const uint16_t ts_small_parse_table[] = { [20309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_EQ, - ACTIONS(1484), 1, + ACTIONS(1511), 1, anon_sym_COLON, - ACTIONS(1486), 10, + ACTIONS(1503), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63490,7 +63610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1475), 12, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63503,7 +63623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1469), 15, + ACTIONS(1483), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -63519,56 +63639,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [20362] = 20, + [20362] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1843), 1, - anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1933), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1935), 1, - anon_sym_AMP_AMP, - ACTIONS(1937), 1, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1873), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1939), 1, anon_sym_CARET, - ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1951), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1871), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(597), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [20418] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1929), 2, + ACTIONS(1885), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1943), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1945), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1931), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1825), 11, + anon_sym_EQ, + ACTIONS(1883), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63579,7 +63735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20442] = 17, + [20474] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63598,11 +63754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1033), 1, + STATE(1051), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -63615,7 +63771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63636,64 +63792,131 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20516] = 9, + [20548] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1931), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1823), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1821), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [20574] = 18, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + STATE(708), 1, + sym__type_specifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1048), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(899), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [20622] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + STATE(708), 1, + sym__type_specifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1035), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(899), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [20696] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1823), 1, + ACTIONS(1861), 1, anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, ACTIONS(1935), 1, anon_sym_AMP_AMP, ACTIONS(1937), 1, @@ -63702,12 +63925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1941), 1, anon_sym_AMP, - STATE(597), 1, + ACTIONS(1951), 1, + anon_sym_QMARK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, @@ -63724,63 +63949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, ACTIONS(1949), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1931), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1821), 13, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [20650] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1857), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1855), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_GT_GT, + ACTIONS(1931), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1859), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63791,27 +63966,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20706] = 17, + [20776] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1823), 1, + ACTIONS(1917), 1, anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1935), 1, + anon_sym_AMP_AMP, ACTIONS(1937), 1, anon_sym_PIPE, ACTIONS(1939), 1, anon_sym_CARET, ACTIONS(1941), 1, anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, @@ -63833,9 +64012,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 14, + ACTIONS(1915), 12, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [20854] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + STATE(595), 1, + sym_argument_list, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1841), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1839), 20, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63848,27 +64070,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20780] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [20908] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1853), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1897), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -63877,7 +64102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1851), 18, + ACTIONS(1895), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63896,28 +64121,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20836] = 16, + [20966] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, + ACTIONS(1897), 1, + anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, + ACTIONS(1935), 1, + anon_sym_AMP_AMP, + ACTIONS(1937), 1, + anon_sym_PIPE, ACTIONS(1939), 1, anon_sym_CARET, ACTIONS(1941), 1, anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1823), 2, - anon_sym_PIPE, - anon_sym_EQ, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, @@ -63937,9 +64165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 14, + ACTIONS(1895), 13, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63952,42 +64179,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20908] = 8, + [21042] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, + ACTIONS(1897), 1, + anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + ACTIONS(1937), 1, + anon_sym_PIPE, + ACTIONS(1939), 1, + anon_sym_CARET, + ACTIONS(1941), 1, + anon_sym_AMP, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1823), 13, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1943), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1821), 18, + ACTIONS(1931), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1895), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64000,23 +64236,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20964] = 15, + [21116] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, + ACTIONS(1939), 1, + anon_sym_CARET, ACTIONS(1941), 1, anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(1897), 2, + anon_sym_PIPE, + anon_sym_EQ, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, @@ -64032,15 +64273,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1823), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 14, + ACTIONS(1895), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -64055,7 +64292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21034] = 17, + [21188] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64074,9 +64311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - STATE(702), 1, + STATE(708), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, STATE(1040), 1, sym__declaration_specifiers, @@ -64091,7 +64328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -64112,19 +64349,33 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [21108] = 14, + [21262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1935), 1, + anon_sym_AMP_AMP, + ACTIONS(1937), 1, + anon_sym_PIPE, + ACTIONS(1939), 1, + anon_sym_CARET, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1951), 1, + anon_sym_QMARK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, @@ -64146,12 +64397,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 4, + ACTIONS(1795), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21342] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(1941), 1, + anon_sym_AMP, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1929), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1943), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1949), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1897), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(1821), 14, + ACTIONS(1931), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1895), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -64166,24 +64464,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21176] = 11, + [21412] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1943), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, @@ -64191,20 +64498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1807), 6, + ACTIONS(1897), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(1799), 18, + ACTIONS(1895), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64217,44 +64518,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21238] = 10, + [21480] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1949), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 8, + ACTIONS(1897), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 18, + ACTIONS(1895), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64267,87 +64571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21298] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - sym_identifier, - STATE(702), 1, - sym__type_specifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1042), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(886), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(654), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [21372] = 13, + [21546] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, @@ -64355,16 +64596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 4, + ACTIONS(1893), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(1821), 16, + ACTIONS(1891), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64377,22 +64622,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21438] = 8, + [21608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1925), 13, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64406,7 +64651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1923), 18, + ACTIONS(1847), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -64425,45 +64670,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21494] = 19, + [21664] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1933), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1935), 1, - anon_sym_AMP_AMP, - ACTIONS(1937), 1, - anon_sym_PIPE, - ACTIONS(1939), 1, - anon_sym_CARET, - ACTIONS(1941), 1, - anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1943), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1945), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, @@ -64471,7 +64695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1903), 12, + ACTIONS(1897), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1895), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64484,39 +64721,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21572] = 11, + [21726] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1949), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1823), 6, + ACTIONS(1897), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1821), 18, + ACTIONS(1895), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -64535,105 +64771,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21634] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1960), 1, - anon_sym___attribute__, - ACTIONS(1963), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1966), 1, - anon_sym___declspec, - ACTIONS(1957), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1955), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1969), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(649), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1953), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21692] = 20, + [21786] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, - anon_sym_EQ, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1933), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1935), 1, - anon_sym_AMP_AMP, - ACTIONS(1937), 1, - anon_sym_PIPE, - ACTIONS(1939), 1, - anon_sym_CARET, - ACTIONS(1941), 1, - anon_sym_AMP, - ACTIONS(1951), 1, - anon_sym_QMARK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1929), 2, + ACTIONS(1897), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1943), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1945), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1931), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1919), 11, + anon_sym_EQ, + ACTIONS(1895), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -64644,19 +64819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21772] = 7, + [21842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - STATE(597), 1, - sym_argument_list, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1901), 13, + ACTIONS(1913), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64670,13 +64836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1899), 20, + ACTIONS(1911), 24, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64691,108 +64859,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [21826] = 17, + anon_sym_DOT, + anon_sym_DASH_GT, + [21887] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1960), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(878), 1, + ACTIONS(1963), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1417), 1, - sym_identifier, - STATE(702), 1, - sym__type_specifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1051), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1966), 1, + anon_sym___declspec, + ACTIONS(1955), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(1957), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(1969), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(654), 7, + STATE(653), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [21900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1972), 1, - anon_sym_EQ, - ACTIONS(1974), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1475), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1469), 14, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1953), 11, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21949] = 16, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21944] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64811,9 +64928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1417), 1, sym_identifier, - STATE(700), 1, + STATE(737), 1, sym__type_specifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(47), 4, anon_sym_signed, @@ -64826,7 +64943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -64839,7 +64956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 7, + STATE(653), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64847,10 +64964,23 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [22020] = 3, + [22015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 13, + ACTIONS(1972), 1, + anon_sym_EQ, + ACTIONS(1974), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1489), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64863,8 +64993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1817), 24, + ACTIONS(1483), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64875,24 +65004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22065] = 3, + [22064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 13, + ACTIONS(1837), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64906,7 +65025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1795), 24, + ACTIONS(1835), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64931,10 +65050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22110] = 3, + [22109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 13, + ACTIONS(1925), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -64948,7 +65067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1883), 24, + ACTIONS(1923), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -64973,7 +65092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22155] = 5, + [22154] = 5, ACTIONS(3), 1, sym_comment, STATE(658), 2, @@ -65016,7 +65135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22203] = 19, + [22202] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1409), 1, @@ -65029,15 +65148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1043), 1, + STATE(1042), 1, sym__declarator, - STATE(1125), 1, + STATE(1119), 1, sym__abstract_declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, ACTIONS(1985), 2, anon_sym_COMMA, @@ -65045,22 +65164,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(804), 2, + STATE(772), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(840), 2, + STATE(833), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -65073,7 +65192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [22279] = 3, + [22278] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1993), 15, @@ -65112,10 +65231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22321] = 3, + [22320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 9, + ACTIONS(1999), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65124,7 +65243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, ACTIONS(1997), 24, anon_sym_extern, anon_sym___attribute__, @@ -65150,19 +65268,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22362] = 3, + [22360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2001), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 8, + ACTIONS(1995), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2001), 24, + ACTIONS(1993), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65187,12 +65340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22402] = 3, + [22438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(1118), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2005), 30, + ACTIONS(1116), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65223,57 +65376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22441] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1823), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1821), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [22498] = 3, + [22477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2007), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2017), 30, + ACTIONS(2005), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65304,12 +65412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22537] = 3, + [22516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 1, + ACTIONS(2011), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1084), 30, + ACTIONS(2009), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65340,12 +65448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22576] = 3, + [22555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2015), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 30, + ACTIONS(2013), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65376,12 +65484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22615] = 3, + [22594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 1, + ACTIONS(2019), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1112), 30, + ACTIONS(2017), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65412,12 +65520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22654] = 3, + [22633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 1, + ACTIONS(2023), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1136), 30, + ACTIONS(2021), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65448,12 +65556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22693] = 3, + [22672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 1, + ACTIONS(2027), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1132), 30, + ACTIONS(2025), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65484,12 +65592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22732] = 3, + [22711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1078), 1, + ACTIONS(2031), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1076), 30, + ACTIONS(2029), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65520,55 +65628,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22771] = 10, + [22750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1823), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1821), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [22824] = 3, + ACTIONS(2035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2033), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2039), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2021), 30, + ACTIONS(2037), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65599,12 +65700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22863] = 3, + [22828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(2043), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2025), 30, + ACTIONS(2041), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65635,12 +65736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22902] = 3, + [22867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1122), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2029), 30, + ACTIONS(1120), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65671,324 +65772,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22941] = 18, + [22906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1821), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23010] = 17, + ACTIONS(1110), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1108), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22945] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1821), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23077] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1825), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [23150] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1823), 1, - anon_sym_PIPE, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1821), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23217] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1823), 1, - anon_sym_PIPE, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2039), 1, - anon_sym_AMP, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1821), 9, + ACTIONS(1915), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [23282] = 15, + [23016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1823), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1821), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23345] = 3, + ACTIONS(2071), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [23055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1369), 24, + ACTIONS(1100), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -66008,85 +65932,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23384] = 14, + [23094] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1823), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1821), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23445] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1807), 4, + ACTIONS(1893), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1799), 13, + ACTIONS(1891), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -66100,12 +65977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [23502] = 3, + [23151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(1090), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2051), 30, + ACTIONS(1088), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66136,71 +66013,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23541] = 20, + [23190] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1919), 5, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1795), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [23614] = 3, + [23263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 7, + ACTIONS(2077), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1993), 24, + anon_sym_LBRACE, + ACTIONS(2075), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66225,35 +66102,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23653] = 11, + [23302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1823), 4, + ACTIONS(1897), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1821), 15, + ACTIONS(1895), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -66269,84 +66146,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [23708] = 3, + [23357] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, ACTIONS(2057), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2059), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23786] = 3, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1859), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [23430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 1, + ACTIONS(2081), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2063), 30, + ACTIONS(2079), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66377,208 +66235,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23825] = 3, + [23469] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 7, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1897), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1895), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23526] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1897), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(2067), 24, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23864] = 3, + anon_sym_QMARK, + [23587] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2071), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23903] = 19, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1897), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23650] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1897), 1, + anon_sym_PIPE, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2059), 1, + anon_sym_AMP, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23715] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(1895), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23782] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1903), 6, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [23974] = 3, + [23849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2075), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24013] = 3, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23918] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 7, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1897), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1895), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1373), 24, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24052] = 3, + anon_sym_QMARK, + [23971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, + ACTIONS(1094), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2079), 30, + ACTIONS(1092), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66609,23 +66654,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24091] = 3, + [24010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(1747), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(1749), 28, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -66645,23 +66689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24130] = 3, + [24048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(1375), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2087), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(1373), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -66681,145 +66724,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24169] = 9, + [24086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2091), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(2093), 6, + ACTIONS(1371), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_COLON, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [24219] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2095), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, + ACTIONS(1369), 24, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(2097), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(649), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [24269] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 3, anon_sym___based, anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2101), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_COLON, - STATE(704), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [24319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1751), 28, + ACTIONS(2083), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -66839,54 +66794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24357] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(878), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2103), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(2105), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(649), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [24407] = 3, + [24162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 2, + ACTIONS(1771), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1761), 28, + ACTIONS(1773), 28, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66915,13 +66829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24445] = 3, + [24200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1078), 2, + ACTIONS(2023), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1076), 27, + ACTIONS(2021), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -66949,18 +66863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24482] = 3, + [24237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 2, + ACTIONS(2085), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2029), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(435), 1, + sym_string_literal, + ACTIONS(2087), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2083), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66983,18 +66899,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24519] = 3, + [24278] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(2091), 1, + anon_sym_RPAREN, + STATE(595), 1, + sym_argument_list, + STATE(1195), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2025), 28, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(433), 1, + sym_string_literal, + ACTIONS(2087), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2083), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -67017,13 +66988,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24556] = 3, + [24394] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2093), 1, + anon_sym_COMMA, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2095), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [24467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2007), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2063), 27, + ACTIONS(2005), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67051,46 +67074,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24593] = 3, + [24504] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, anon_sym_RBRACE, - ACTIONS(1112), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, + STATE(595), 1, + sym_argument_list, + STATE(1237), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24579] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2101), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(43), 5, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + ACTIONS(2103), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + STATE(709), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [24628] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2105), 3, + anon_sym___based, + anon_sym_LBRACK, sym_identifier, - [24630] = 3, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2107), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(653), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [24677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2031), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2021), 28, + ACTIONS(2029), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67119,15 +67241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24667] = 3, + [24714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 2, + ACTIONS(2035), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1092), 27, + ACTIONS(2033), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67153,12 +67275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24704] = 3, + [24751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 1, + ACTIONS(2039), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1084), 28, + ACTIONS(2037), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67187,15 +67309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24741] = 3, + [24788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 2, + ACTIONS(2043), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2083), 27, + ACTIONS(2041), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67221,13 +67343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24778] = 3, + [24825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 2, + ACTIONS(2011), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2079), 27, + ACTIONS(2009), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67255,67 +67377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24815] = 21, + [24862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2109), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [24888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2081), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2079), 28, + anon_sym_RBRACE, + ACTIONS(2041), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67341,12 +67411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24925] = 3, + [24899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(1094), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2005), 28, + ACTIONS(1092), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67375,15 +67445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24962] = 3, + [24936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2039), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 28, + anon_sym_RBRACE, + ACTIONS(2037), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67409,15 +67479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24999] = 3, + [24973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2035), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2017), 28, + anon_sym_RBRACE, + ACTIONS(2033), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67443,12 +67513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25036] = 3, + [25010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2003), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2051), 28, + ACTIONS(2001), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67477,13 +67547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25073] = 3, + [25047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 2, + ACTIONS(2081), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2087), 27, + ACTIONS(2079), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67511,51 +67581,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25110] = 5, + [25084] = 22, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2115), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2113), 7, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2089), 1, anon_sym_COMMA, + ACTIONS(2109), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(595), 1, + sym_argument_list, + STATE(1238), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2111), 17, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_primitive_type, - sym_identifier, - [25151] = 3, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 2, + ACTIONS(2011), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2075), 27, + ACTIONS(2009), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67581,15 +67668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25188] = 3, + [25196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 2, + ACTIONS(2071), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2059), 27, + ACTIONS(2069), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67615,12 +67702,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25225] = 3, + [25233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2063), 28, + ACTIONS(2111), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2113), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(653), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [25282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1088), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67649,12 +67776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25262] = 3, + [25319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2015), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2059), 28, + ACTIONS(2013), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67683,15 +67810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25299] = 3, + [25356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, + ACTIONS(2003), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2075), 28, + anon_sym_RBRACE, + ACTIONS(2001), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67717,12 +67844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25336] = 3, + [25393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2019), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2087), 28, + ACTIONS(2017), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67751,12 +67878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25373] = 3, + [25430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(1102), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 28, + ACTIONS(1100), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67785,15 +67912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25410] = 3, + [25467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1118), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2029), 28, + anon_sym_RBRACE, + ACTIONS(1116), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67819,20 +67946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25447] = 5, + [25504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, + ACTIONS(1090), 2, anon_sym_LBRACK_LBRACK, - STATE(437), 1, - sym_string_literal, - ACTIONS(2118), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 22, + anon_sym_RBRACE, + ACTIONS(1088), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -67855,66 +67980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25488] = 22, + [25541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2122), 1, - anon_sym_RBRACE, - STATE(597), 1, - sym_argument_list, - STATE(1170), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2055), 27, + ACTIONS(2013), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67942,73 +68014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25600] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, - anon_sym_COMMA, - ACTIONS(2126), 1, - anon_sym_RPAREN, - STATE(597), 1, - sym_argument_list, - STATE(1200), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25675] = 5, + [25578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, + ACTIONS(2081), 1, anon_sym_LBRACK_LBRACK, - STATE(435), 1, - sym_string_literal, - ACTIONS(2118), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 22, + ACTIONS(2079), 28, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -68031,20 +68048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25716] = 5, + [25615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, + ACTIONS(2019), 2, anon_sym_LBRACK_LBRACK, - STATE(433), 1, - sym_string_literal, - ACTIONS(2118), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 22, + anon_sym_RBRACE, + ACTIONS(2017), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -68067,13 +68082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25757] = 3, + [25652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 2, + ACTIONS(1110), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2071), 27, + ACTIONS(1108), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -68101,15 +68116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25794] = 3, + [25689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 2, + ACTIONS(2023), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1136), 27, + ACTIONS(2021), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -68135,47 +68150,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25831] = 3, + [25726] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1132), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2115), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(43), 5, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + ACTIONS(2117), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + STATE(724), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [25775] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2119), 1, + anon_sym_COMMA, + ACTIONS(2121), 1, + anon_sym_RPAREN, + STATE(595), 1, + sym_argument_list, + STATE(1232), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25850] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(739), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2127), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2125), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2123), 17, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [25868] = 3, + [25891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 2, + ACTIONS(2071), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1084), 27, + ACTIONS(2069), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -68203,13 +68313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25905] = 3, + [25928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 2, + ACTIONS(2031), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2005), 27, + ACTIONS(2029), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -68237,73 +68347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25942] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2128), 1, - anon_sym_COMMA, - ACTIONS(2130), 1, - anon_sym_RPAREN, - STATE(597), 1, - sym_argument_list, - STATE(1187), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26017] = 5, + [25965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, + ACTIONS(1094), 2, anon_sym_LBRACK_LBRACK, - STATE(438), 1, - sym_string_literal, - ACTIONS(2118), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 22, + anon_sym_RBRACE, + ACTIONS(1092), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -68326,18 +68381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26058] = 3, + [26002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 2, + ACTIONS(2085), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2025), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(436), 1, + sym_string_literal, + ACTIONS(2087), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2083), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -68360,15 +68417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26095] = 3, + [26043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1078), 1, + ACTIONS(2027), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1076), 28, + anon_sym_RBRACE, + ACTIONS(2025), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -68394,12 +68451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26132] = 3, + [26080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 1, + ACTIONS(1122), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1132), 28, + ACTIONS(1120), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68428,15 +68485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26169] = 3, + [26117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(2007), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2021), 27, + ACTIONS(2005), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -68462,56 +68519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26206] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2132), 1, - sym_identifier, - ACTIONS(2141), 1, - sym_primitive_type, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2135), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2137), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [26251] = 3, + [26154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(2085), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2051), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(438), 1, + sym_string_literal, + ACTIONS(2087), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2083), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -68534,15 +68555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26288] = 3, + [26195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 1, + ACTIONS(1122), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1136), 28, + anon_sym_RBRACE, + ACTIONS(1120), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -68568,12 +68589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26325] = 3, + [26232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(1110), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2071), 28, + ACTIONS(1108), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68602,15 +68623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26362] = 3, + [26269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 1, + ACTIONS(1102), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1112), 28, + anon_sym_RBRACE, + ACTIONS(1100), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -68636,12 +68657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26399] = 3, + [26306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2027), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 28, + ACTIONS(2025), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -68670,68 +68691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26436] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2128), 1, - anon_sym_COMMA, - ACTIONS(2143), 1, - anon_sym_RPAREN, - STATE(597), 1, - sym_argument_list, - STATE(1172), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26511] = 3, + [26343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 2, + ACTIONS(1118), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2017), 27, + ACTIONS(1116), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -68757,3123 +68725,3122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26548] = 20, + [26380] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2130), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2145), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [26618] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_SLASH, - ACTIONS(2033), 1, - anon_sym_AMP_AMP, - ACTIONS(2035), 1, - anon_sym_PIPE, - ACTIONS(2037), 1, - anon_sym_CARET, - ACTIONS(2039), 1, - anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2015), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2147), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [26688] = 21, + [26452] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2149), 1, + ACTIONS(2132), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26760] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26524] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2151), 1, + ACTIONS(2134), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26832] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26596] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2153), 1, + ACTIONS(2136), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26904] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2155), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2138), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26976] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2157), 1, + ACTIONS(2140), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27048] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2159), 1, + ACTIONS(2142), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27120] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26884] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2161), 1, - anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27192] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2144), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [26954] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2163), 1, + ACTIONS(2146), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27264] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27026] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2165), 1, - anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27336] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2148), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [27096] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2167), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2150), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27408] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27168] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2169), 1, + ACTIONS(2152), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27480] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27240] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2171), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2154), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27552] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27312] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2173), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2156), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27624] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27384] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2175), 1, + ACTIONS(2158), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27696] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27456] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2177), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2160), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27768] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27528] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2179), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2162), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27840] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2181), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2164), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27912] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2183), 1, + ACTIONS(2166), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27984] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27744] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1409), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1061), 1, + sym__declarator, + STATE(1120), 1, + sym__abstract_declarator, + STATE(1133), 1, + sym_parameter_list, + STATE(1392), 1, + sym_ms_based_modifier, + ACTIONS(2168), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1136), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [27804] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2185), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28056] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27876] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2187), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2172), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28128] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27948] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2174), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2189), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [28198] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2191), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2176), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28270] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28092] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2193), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2178), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28342] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2180), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2195), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [28412] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28236] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2197), 1, - anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28484] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2182), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [28306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(2193), 1, + sym_primitive_type, + STATE(739), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2191), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2187), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1811), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2189), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [28350] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2199), 1, - anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28556] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2195), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [28420] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2201), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2197), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28628] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28492] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2203), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2199), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28700] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28564] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28772] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28636] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2207), 1, + ACTIONS(2203), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28844] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28708] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2209), 1, + ACTIONS(2205), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28916] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28780] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2211), 1, + ACTIONS(2207), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28988] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28852] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2213), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2209), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29060] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2215), 1, + ACTIONS(2211), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29132] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28996] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2217), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2213), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29204] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29068] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2219), 1, - anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29276] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2215), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [29138] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2221), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2217), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29348] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29210] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2223), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2219), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29420] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29282] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2225), 1, + ACTIONS(2221), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29492] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29354] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2227), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2223), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29564] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29426] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2229), 1, + ACTIONS(2225), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29636] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29498] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2231), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2227), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29708] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29570] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2233), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2229), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29780] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29642] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2235), 1, - anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29852] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2231), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [29712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2233), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2237), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [29922] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 1, - anon_sym_LPAREN2, - ACTIONS(1411), 1, - anon_sym_STAR, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(1983), 1, - sym_identifier, - ACTIONS(1991), 1, - anon_sym_LBRACK, - STATE(1044), 1, - sym__declarator, - STATE(1129), 1, - sym__abstract_declarator, - STATE(1148), 1, - sym_parameter_list, - STATE(1433), 1, - sym_ms_based_modifier, - ACTIONS(2239), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1133), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [29982] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29784] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2241), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [30052] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29856] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2243), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2237), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30124] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29928] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2245), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2239), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30196] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30000] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2247), 1, + ACTIONS(2241), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30268] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30072] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2249), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2243), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30340] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30144] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2251), 1, - anon_sym_SEMI, - STATE(597), 1, + ACTIONS(2245), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30412] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30216] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2253), 1, + ACTIONS(2247), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30484] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30288] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2255), 1, + ACTIONS(2249), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30556] = 21, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30360] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2107), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_RPAREN, - STATE(597), 1, + ACTIONS(2251), 1, + anon_sym_SEMI, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30628] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30432] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2259), 1, - anon_sym_COLON, - STATE(597), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2253), 1, + anon_sym_RPAREN, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30697] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30504] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2261), 1, - anon_sym_COLON, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30766] = 19, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2255), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [30574] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1755), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2263), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - STATE(597), 1, + ACTIONS(2281), 1, + anon_sym_QMARK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1903), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30833] = 11, + [30643] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1769), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - STATE(597), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_PIPE, + ACTIONS(2269), 1, + anon_sym_CARET, + ACTIONS(2271), 1, + anon_sym_AMP, + ACTIONS(2281), 1, + anon_sym_QMARK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1823), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1821), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2275), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [30884] = 14, + [30712] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1983), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1044), 1, - sym__declarator, - STATE(1433), 1, + STATE(1068), 1, + sym__field_declarator, + STATE(1436), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(855), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(985), 2, + STATE(1008), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, + STATE(1014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -71881,607 +71848,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [30941] = 20, + [30769] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1757), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2291), 1, - anon_sym_COLON, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31010] = 20, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30838] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2293), 1, - anon_sym_COMMA, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(1915), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31079] = 20, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30905] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, - anon_sym_AMP_AMP, - ACTIONS(2273), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_CARET, - ACTIONS(2277), 1, - anon_sym_AMP, - ACTIONS(2295), 1, - anon_sym_QMARK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(1897), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(1895), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31148] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [30954] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2289), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31217] = 20, + [31023] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2291), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31286] = 20, + [31092] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, - anon_sym_QMARK, - ACTIONS(2297), 1, - anon_sym_COLON, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31355] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - ACTIONS(2267), 1, - anon_sym_SLASH, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2263), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1807), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1799), 9, + ACTIONS(1895), 3, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [31408] = 20, + [31157] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2293), 1, + sym_identifier, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + anon_sym_STAR, + STATE(1015), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1086), 1, + sym__type_declarator, + STATE(1343), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(993), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [31214] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, + anon_sym_STAR, + STATE(1015), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1042), 1, + sym__declarator, + STATE(1392), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(833), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(998), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [31271] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1775), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2299), 1, - anon_sym_SEMI, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31477] = 20, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31340] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1753), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2301), 1, - anon_sym_COLON, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31546] = 20, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31409] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2303), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31615] = 20, + [31478] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2263), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2305), 1, + anon_sym_RBRACK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31684] = 20, + [31547] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1745), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2263), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2303), 1, - anon_sym_RBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31753] = 14, + [31616] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2305), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2307), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2309), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1066), 1, - sym__field_declarator, - STATE(1354), 1, + STATE(1077), 1, + sym__type_declarator, + STATE(1343), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1010), 2, + STATE(1000), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(1014), 2, @@ -72491,12 +72490,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -72504,78 +72503,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [31810] = 12, + [31673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - STATE(597), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_PIPE, + ACTIONS(2269), 1, + anon_sym_CARET, + ACTIONS(2271), 1, + anon_sym_AMP, + ACTIONS(2281), 1, + anon_sym_QMARK, + ACTIONS(2307), 1, + anon_sym_RBRACK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1823), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1821), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2275), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [31863] = 14, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31742] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1078), 1, + STATE(1077), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(982), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1014), 2, + STATE(821), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, + STATE(1000), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -72588,174 +72595,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [31920] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - STATE(1016), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1071), 1, - sym__field_declarator, - STATE(1354), 1, - sym_ms_based_modifier, - ACTIONS(1989), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(831), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(974), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1987), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [31977] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - ACTIONS(2267), 1, - anon_sym_SLASH, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1823), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2263), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2281), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2283), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1821), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [32036] = 16, + [31799] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1823), 1, + ACTIONS(1897), 1, anon_sym_PIPE, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2277), 1, + ACTIONS(2269), 1, + anon_sym_CARET, + ACTIONS(2271), 1, anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1821), 5, + ACTIONS(1895), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [32097] = 14, + [31862] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1078), 1, - sym__type_declarator, - STATE(1413), 1, + STATE(1061), 1, + sym__declarator, + STATE(1392), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(859), 2, + STATE(856), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(982), 2, + STATE(994), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -72763,122 +72684,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32154] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - ACTIONS(2267), 1, - anon_sym_SLASH, - ACTIONS(2269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, - anon_sym_AMP_AMP, - ACTIONS(2273), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_CARET, - ACTIONS(2277), 1, - anon_sym_AMP, - ACTIONS(2295), 1, - anon_sym_QMARK, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2263), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2281), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2283), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32223] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1823), 1, - anon_sym_PIPE, - ACTIONS(1927), 1, - anon_sym_LPAREN2, - ACTIONS(2267), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, - anon_sym_CARET, - ACTIONS(2277), 1, - anon_sym_AMP, - STATE(597), 1, - sym_argument_list, - ACTIONS(1813), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2263), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2281), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2283), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1821), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [32286] = 14, + [31919] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1044), 1, + STATE(1061), 1, sym__declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(985), 2, + STATE(994), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(1014), 2, @@ -72888,7 +72714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -72901,135 +72727,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32343] = 20, + [31976] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1779), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2317), 1, - anon_sym_COLON, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32412] = 20, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32045] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1743), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2263), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2319), 1, - anon_sym_RBRACK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32481] = 14, + [32114] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2305), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2307), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2309), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1067), 1, + STATE(1066), 1, sym__field_declarator, - STATE(1354), 1, + STATE(1436), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(986), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1014), 2, + STATE(845), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, + STATE(1001), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1105), 5, + STATE(1115), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -73042,355 +72868,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32538] = 14, + [32171] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - STATE(597), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, + anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, + anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2309), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1823), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2281), 2, + ACTIONS(2061), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1821), 7, + [32240] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, + ACTIONS(2055), 1, + anon_sym_PIPE, + ACTIONS(2057), 1, anon_sym_CARET, + ACTIONS(2059), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_QMARK, + ACTIONS(2311), 1, + anon_sym_COLON, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2045), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [32595] = 20, + ACTIONS(2063), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2065), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32309] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2051), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_COLON, - STATE(597), 1, + ACTIONS(2313), 1, + anon_sym_COMMA, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32664] = 20, + ACTIONS(2067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32378] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2315), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32733] = 20, + [32447] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1919), 1, - anon_sym_RBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2317), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32802] = 17, + [32516] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_RBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2273), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - STATE(597), 1, + ACTIONS(2281), 1, + anon_sym_QMARK, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1821), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [32865] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - STATE(1016), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1066), 1, - sym__field_declarator, - STATE(1354), 1, - sym_ms_based_modifier, - ACTIONS(1989), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(843), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1010), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1987), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32922] = 20, + [32585] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(1811), 1, + ACTIONS(1759), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2035), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2037), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2039), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2047), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2049), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - ACTIONS(2323), 1, - anon_sym_COLON, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2009), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2011), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2041), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2043), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2045), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32991] = 14, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32654] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1075), 1, - sym__type_declarator, - STATE(1413), 1, + STATE(1070), 1, + sym__field_declarator, + STATE(1436), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(833), 2, + STATE(814), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(987), 2, @@ -73400,12 +73241,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -73413,42 +73254,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33048] = 14, + [32711] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1983), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1043), 1, - sym__declarator, - STATE(1433), 1, + STATE(1070), 1, + sym__field_declarator, + STATE(1436), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(840), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1008), 2, + STATE(987), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, + STATE(1014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -73456,138 +73297,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33105] = 18, + [32768] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, + ACTIONS(1897), 1, + anon_sym_PIPE, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, ACTIONS(2271), 1, - anon_sym_AMP_AMP, - ACTIONS(2273), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_CARET, - ACTIONS(2277), 1, anon_sym_AMP, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1821), 3, + ACTIONS(1895), 5, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [33170] = 20, + [32829] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1897), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2259), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2273), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2275), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2277), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 5, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2277), 1, - anon_sym_AMP, - ACTIONS(2295), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(597), 1, + [32888] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, + anon_sym_SLASH, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(1897), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33239] = 14, + ACTIONS(1895), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [32945] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1983), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1053), 1, - sym__declarator, - STATE(1433), 1, + STATE(1079), 1, + sym__type_declarator, + STATE(1343), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1003), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1014), 2, + STATE(828), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, + STATE(997), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -73595,34 +73472,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33296] = 10, + [33002] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, + anon_sym_SLASH, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2259), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1897), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1895), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [33055] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, + ACTIONS(2261), 1, + anon_sym_SLASH, ACTIONS(2267), 1, + anon_sym_PIPE, + ACTIONS(2269), 1, + anon_sym_CARET, + ACTIONS(2271), 1, + anon_sym_AMP, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2259), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2273), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2275), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2277), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1895), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [33118] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, anon_sym_SLASH, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2265), 2, + ACTIONS(2257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1823), 6, + ACTIONS(2279), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1893), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [33171] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2261), 1, + anon_sym_SLASH, + STATE(595), 1, + sym_argument_list, + ACTIONS(1827), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1829), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2259), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1897), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1821), 11, + ACTIONS(1895), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -73634,125 +73640,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [33345] = 20, + [33222] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(1795), 1, anon_sym_RBRACK, - ACTIONS(1811), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2263), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33414] = 20, + [33291] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_RBRACK, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2053), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2055), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2057), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2059), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2073), 1, anon_sym_QMARK, - STATE(597), 1, + ACTIONS(2319), 1, + anon_sym_COLON, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2045), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2063), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2065), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33483] = 14, + [33360] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - STATE(1089), 1, - sym__type_declarator, - STATE(1413), 1, + STATE(1045), 1, + sym__declarator, + STATE(1392), 1, sym_ms_based_modifier, ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(1013), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, STATE(1014), 2, @@ -73762,12 +73768,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -73775,56 +73781,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33540] = 20, + [33417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1825), 1, + ACTIONS(1751), 1, anon_sym_RBRACK, + ACTIONS(1821), 1, + anon_sym_LBRACK, ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2267), 1, + ACTIONS(2261), 1, anon_sym_SLASH, - ACTIONS(2269), 1, + ACTIONS(2263), 1, anon_sym_PIPE_PIPE, - ACTIONS(2271), 1, + ACTIONS(2265), 1, anon_sym_AMP_AMP, - ACTIONS(2273), 1, + ACTIONS(2267), 1, anon_sym_PIPE, - ACTIONS(2275), 1, + ACTIONS(2269), 1, anon_sym_CARET, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2295), 1, + ACTIONS(2281), 1, anon_sym_QMARK, - STATE(597), 1, + STATE(595), 1, sym_argument_list, - ACTIONS(1813), 2, + ACTIONS(1827), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1815), 2, + ACTIONS(1829), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2263), 2, + ACTIONS(2257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2265), 2, + ACTIONS(2259), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2279), 2, + ACTIONS(2273), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2281), 2, + ACTIONS(2275), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2283), 2, + ACTIONS(2277), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2285), 2, + ACTIONS(2279), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33609] = 10, + [33486] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -73833,12 +73839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2325), 1, + ACTIONS(2321), 1, anon_sym_SEMI, - ACTIONS(2099), 2, + ACTIONS(2101), 2, anon_sym___based, sym_identifier, - ACTIONS(2101), 2, + ACTIONS(2103), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -73854,7 +73860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(704), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -73862,7 +73868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33657] = 10, + [33534] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -73871,12 +73877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2327), 1, + ACTIONS(2323), 1, anon_sym_SEMI, - ACTIONS(2099), 2, + ACTIONS(2101), 2, anon_sym___based, sym_identifier, - ACTIONS(2101), 2, + ACTIONS(2103), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -73892,7 +73898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(704), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -73900,7 +73906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33705] = 10, + [33582] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -73909,12 +73915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2329), 1, + ACTIONS(2325), 1, anon_sym_SEMI, - ACTIONS(2099), 2, + ACTIONS(2101), 2, anon_sym___based, sym_identifier, - ACTIONS(2101), 2, + ACTIONS(2103), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -73930,7 +73936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(704), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -73938,7 +73944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33753] = 10, + [33630] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -73947,12 +73953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2327), 1, anon_sym_SEMI, - ACTIONS(2099), 2, + ACTIONS(2101), 2, anon_sym___based, sym_identifier, - ACTIONS(2101), 2, + ACTIONS(2103), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -73968,7 +73974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(704), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -73976,26 +73982,26 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33801] = 13, + [33678] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(965), 1, + ACTIONS(2329), 1, + anon_sym_enum, + STATE(966), 1, sym__type_specifier, - STATE(984), 1, + STATE(1002), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1338), 1, + STATE(1472), 1, sym_type_descriptor, - STATE(875), 2, + STATE(877), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1365), 4, @@ -74003,7 +74009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74016,14 +74022,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33854] = 5, + [33731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(904), 1, sym_field_declaration_list, - ACTIONS(2335), 7, + ACTIONS(2333), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74031,7 +74037,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2333), 16, + ACTIONS(2331), 16, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [33768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, + anon_sym_LBRACE, + ACTIONS(2343), 1, + anon_sym_COLON, + STATE(897), 1, + sym_enumerator_list, + ACTIONS(2339), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2337), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74048,7 +74087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33891] = 13, + [33807] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74061,13 +74100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(965), 1, + STATE(966), 1, sym__type_specifier, - STATE(984), 1, + STATE(1002), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1392), 1, + STATE(1346), 1, sym_type_descriptor, - STATE(875), 2, + STATE(879), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1365), 4, @@ -74075,7 +74114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74088,26 +74127,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33944] = 13, + [33860] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(965), 1, + ACTIONS(2329), 1, + anon_sym_enum, + STATE(966), 1, sym__type_specifier, - STATE(984), 1, + STATE(1002), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1409), 1, + STATE(1324), 1, sym_type_descriptor, - STATE(875), 2, + STATE(877), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1365), 4, @@ -74115,7 +74154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74128,7 +74167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33997] = 13, + [33913] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74141,13 +74180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(965), 1, + STATE(966), 1, sym__type_specifier, - STATE(984), 1, + STATE(1002), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1390), 1, + STATE(1345), 1, sym_type_descriptor, - STATE(875), 2, + STATE(879), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1365), 4, @@ -74155,7 +74194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74168,14 +74207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34050] = 5, + [33966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2341), 1, anon_sym_LBRACE, - STATE(902), 1, - sym_field_declaration_list, - ACTIONS(2341), 7, + STATE(894), 1, + sym_enumerator_list, + ACTIONS(2347), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74183,7 +74222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2339), 16, + ACTIONS(2345), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74200,14 +74239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34087] = 5, + [34003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - STATE(899), 1, - sym_enumerator_list, - ACTIONS(2345), 7, + STATE(883), 1, + sym_field_declaration_list, + ACTIONS(2351), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74215,7 +74254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2343), 16, + ACTIONS(2349), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74232,14 +74271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34124] = 5, + [34040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - STATE(896), 1, + STATE(892), 1, sym_field_declaration_list, - ACTIONS(2351), 7, + ACTIONS(2355), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74247,7 +74286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2349), 16, + ACTIONS(2353), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74264,14 +74303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34161] = 5, + [34077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(905), 1, sym_field_declaration_list, - ACTIONS(2355), 7, + ACTIONS(2359), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74279,7 +74318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2353), 16, + ACTIONS(2357), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74296,10 +74335,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34198] = 5, + [34114] = 12, ACTIONS(3), 1, sym_comment, - STATE(874), 2, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1417), 1, + sym_identifier, + STATE(780), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1044), 1, + sym__type_specifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(899), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [34164] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1978), 6, @@ -74309,7 +74386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2357), 6, + ACTIONS(2361), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -74327,7 +74404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34234] = 12, + [34200] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74340,19 +74417,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(964), 1, - sym__type_specifier, - STATE(984), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(874), 2, + STATE(1046), 1, + sym__type_specifier, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1365), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74365,7 +74442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34284] = 12, + [34250] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74378,11 +74455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1050), 1, + STATE(1054), 1, sym__type_specifier, - STATE(874), 2, + STATE(872), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -74390,7 +74467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74403,7 +74480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34334] = 12, + [34300] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74416,11 +74493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1039), 1, + STATE(1058), 1, sym__type_specifier, - STATE(881), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -74428,7 +74505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74441,32 +74518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34384] = 12, + [34350] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1060), 1, + ACTIONS(2329), 1, + anon_sym_enum, + STATE(961), 1, sym__type_specifier, - STATE(882), 2, + STATE(1002), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(47), 4, + ACTIONS(1365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74479,7 +74556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34434] = 12, + [34400] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74492,11 +74569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, STATE(1052), 1, sym__type_specifier, - STATE(880), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -74504,7 +74581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74517,7 +74594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34484] = 12, + [34450] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74530,19 +74607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1035), 1, + STATE(961), 1, sym__type_specifier, - STATE(874), 2, + STATE(1002), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(47), 4, + ACTIONS(1365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74555,7 +74632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34534] = 12, + [34500] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74568,11 +74645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, STATE(1041), 1, sym__type_specifier, - STATE(874), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -74580,7 +74657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74593,7 +74670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34584] = 12, + [34550] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74606,11 +74683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1057), 1, + STATE(1038), 1, sym__type_specifier, - STATE(874), 2, + STATE(880), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -74618,7 +74695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74631,7 +74708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34634] = 12, + [34600] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -74644,11 +74721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1417), 1, sym_identifier, - STATE(749), 1, + STATE(780), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1056), 1, + STATE(1055), 1, sym__type_specifier, - STATE(876), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -74656,7 +74733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(886), 5, + STATE(899), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -74669,10 +74746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [34684] = 3, + [34650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 7, + ACTIONS(2366), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74680,7 +74757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2360), 16, + ACTIONS(2364), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74697,10 +74774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34715] = 3, + [34681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 7, + ACTIONS(2370), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74708,7 +74785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2364), 16, + ACTIONS(2368), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74725,10 +74802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34746] = 3, + [34712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 7, + ACTIONS(2374), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74736,7 +74813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2368), 16, + ACTIONS(2372), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74753,19 +74830,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34777] = 4, + [34743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 1, + ACTIONS(2378), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1480), 6, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2376), 16, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [34774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2382), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1467), 16, + ACTIONS(2380), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74782,10 +74886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34810] = 3, + [34805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 7, + ACTIONS(2386), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74793,7 +74897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2375), 16, + ACTIONS(2384), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74810,10 +74914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34841] = 3, + [34836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 7, + ACTIONS(2390), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74821,7 +74925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2379), 16, + ACTIONS(2388), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74838,10 +74942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34872] = 3, + [34867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 7, + ACTIONS(2394), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74849,7 +74953,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2383), 16, + ACTIONS(2392), 16, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [34898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + ACTIONS(1497), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1481), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74866,10 +74999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34903] = 3, + [34931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 7, + ACTIONS(2401), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74877,7 +75010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2387), 16, + ACTIONS(2399), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74894,10 +75027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34934] = 3, + [34962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 7, + ACTIONS(2405), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74905,7 +75038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2391), 16, + ACTIONS(2403), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74922,10 +75055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34965] = 3, + [34993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 7, + ACTIONS(2409), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74933,7 +75066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2395), 16, + ACTIONS(2407), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74950,10 +75083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34996] = 3, + [35024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 7, + ACTIONS(2413), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74961,7 +75094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2399), 16, + ACTIONS(2411), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74978,10 +75111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35027] = 3, + [35055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 7, + ACTIONS(2417), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74989,7 +75122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2403), 16, + ACTIONS(2415), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75006,10 +75139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35058] = 3, + [35086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 7, + ACTIONS(2421), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75017,7 +75150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2407), 16, + ACTIONS(2419), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75034,10 +75167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35089] = 3, + [35117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 7, + ACTIONS(2425), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75045,7 +75178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2411), 16, + ACTIONS(2423), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75062,10 +75195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35120] = 3, + [35148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 7, + ACTIONS(2429), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75073,7 +75206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2415), 16, + ACTIONS(2427), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75090,10 +75223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35151] = 3, + [35179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 7, + ACTIONS(2433), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75101,7 +75234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2419), 16, + ACTIONS(2431), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75118,10 +75251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35182] = 3, + [35210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 7, + ACTIONS(2437), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75129,7 +75262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2423), 16, + ACTIONS(2435), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75146,12 +75279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35213] = 3, + [35241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2441), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2427), 22, + ACTIONS(2439), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75174,10 +75307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35244] = 3, + [35272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 7, + ACTIONS(2445), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75185,7 +75318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2431), 16, + ACTIONS(2443), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75202,10 +75335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35275] = 3, + [35303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 7, + ACTIONS(2449), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75213,7 +75346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2435), 16, + ACTIONS(2447), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75230,10 +75363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35306] = 3, + [35334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 7, + ACTIONS(2453), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -75241,7 +75374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2439), 16, + ACTIONS(2451), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75258,77 +75391,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35337] = 3, + [35365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_LPAREN2, + STATE(946), 1, + sym_preproc_argument_list, + ACTIONS(2459), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35399] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, + anon_sym_COMMA, + ACTIONS(2463), 1, + anon_sym_RPAREN, + ACTIONS(2469), 1, + anon_sym_SLASH, + ACTIONS(2471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2473), 1, + anon_sym_AMP_AMP, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, + anon_sym_AMP, + STATE(1235), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2483), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2485), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35454] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2489), 1, + sym_identifier, + ACTIONS(2491), 1, + anon_sym_RPAREN, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2495), 1, + anon_sym_defined, + ACTIONS(2501), 1, + sym_number_literal, + ACTIONS(2497), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2499), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2503), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(907), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35497] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2443), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, + ACTIONS(2489), 1, sym_identifier, - [35368] = 5, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2495), 1, + anon_sym_defined, + ACTIONS(2505), 1, + anon_sym_RPAREN, + ACTIONS(2507), 1, + sym_number_literal, + ACTIONS(2497), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2499), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2503), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(910), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35540] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, - anon_sym_LPAREN2, - STATE(963), 1, - sym_preproc_argument_list, - ACTIONS(2451), 5, + ACTIONS(2461), 1, + anon_sym_COMMA, + ACTIONS(2469), 1, anon_sym_SLASH, + ACTIONS(2471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2473), 1, + anon_sym_AMP_AMP, + ACTIONS(2475), 1, anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, anon_sym_AMP, + ACTIONS(2509), 1, + anon_sym_RPAREN, + STATE(1194), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2483), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2447), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2485), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35595] = 5, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + ACTIONS(2513), 1, + sym_comment, + STATE(984), 1, + sym_preproc_argument_list, + ACTIONS(2459), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35402] = 6, + [35628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 1, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(2460), 1, + ACTIONS(2522), 1, anon_sym_LBRACK, - ACTIONS(1480), 2, + ACTIONS(1497), 2, anon_sym_COMMA, anon_sym_STAR, - ACTIONS(2453), 2, + ACTIONS(2515), 2, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(1467), 15, + ACTIONS(1481), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -75344,202 +75621,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [35437] = 16, + [35663] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - anon_sym_COMMA, - ACTIONS(2465), 1, - anon_sym_RPAREN, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2473), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2475), 1, - anon_sym_AMP_AMP, ACTIONS(2477), 1, - anon_sym_PIPE, - ACTIONS(2479), 1, anon_sym_CARET, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_AMP, - STATE(1173), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2467), 2, + ACTIONS(2527), 1, + anon_sym_PIPE, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, + ACTIONS(2481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2485), 2, + ACTIONS(2483), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35492] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2463), 1, + ACTIONS(2525), 4, anon_sym_COMMA, - ACTIONS(2471), 1, - anon_sym_SLASH, - ACTIONS(2473), 1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(2475), 1, anon_sym_AMP_AMP, - ACTIONS(2477), 1, + [35709] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + anon_sym_LPAREN2, + ACTIONS(2533), 1, + anon_sym_defined, + ACTIONS(2539), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(980), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 5, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2491), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1919), 15, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1189), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2485), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35547] = 5, - ACTIONS(2447), 1, - anon_sym_LF, - ACTIONS(2493), 1, - anon_sym_LPAREN2, - ACTIONS(2495), 1, + [35777] = 3, + ACTIONS(3), 1, sym_comment, - STATE(988), 1, - sym_preproc_argument_list, - ACTIONS(2451), 18, + ACTIONS(2545), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35580] = 10, + [35805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2499), 1, + ACTIONS(2549), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2547), 15, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2501), 1, - anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2509), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(908), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [35623] = 10, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2501), 1, - anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2513), 1, + ACTIONS(2553), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2551), 15, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2515), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(909), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [35666] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35861] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2517), 1, + ACTIONS(2555), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(925), 7, + STATE(1003), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75547,30 +75817,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35706] = 9, + [35901] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(989), 7, + STATE(960), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75578,57 +75848,56 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35746] = 13, + [35941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2475), 1, - anon_sym_AMP_AMP, - ACTIONS(2477), 1, - anon_sym_PIPE, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2467), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2485), 2, + ACTIONS(2527), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2525), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2533), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [35794] = 3, + [35975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 5, + ACTIONS(2469), 1, anon_sym_SLASH, + ACTIONS(2465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2527), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2535), 15, + ACTIONS(2525), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -75636,250 +75905,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35822] = 12, + [36011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2477), 1, - anon_sym_PIPE, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2467), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(2483), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2485), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2533), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [35868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 5, - anon_sym_SLASH, + ACTIONS(2527), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2539), 15, + ACTIONS(2525), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35896] = 12, + [36051] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2543), 1, - anon_sym_PIPE, - ACTIONS(2467), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, + ACTIONS(2481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2485), 2, + ACTIONS(2483), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2533), 4, + ACTIONS(2527), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2525), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [35942] = 11, + anon_sym_CARET, + [36093] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2481), 1, + ACTIONS(2479), 1, anon_sym_AMP, - ACTIONS(2543), 1, + ACTIONS(2527), 1, anon_sym_PIPE, - ACTIONS(2467), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, + ACTIONS(2481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2485), 2, + ACTIONS(2483), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2533), 5, + ACTIONS(2525), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [35986] = 10, + [36137] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2467), 2, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, + anon_sym_AMP, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, + ACTIONS(2481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2485), 2, + ACTIONS(2483), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2533), 5, + ACTIONS(2525), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [36028] = 9, + [36183] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, - ACTIONS(2467), 2, + ACTIONS(2473), 1, + anon_sym_AMP_AMP, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, + anon_sym_AMP, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2485), 2, + ACTIONS(2481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2483), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2487), 2, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2489), 2, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2533), 7, + ACTIONS(2525), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36068] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, - sym_identifier, - ACTIONS(2521), 1, - anon_sym_LPAREN2, - ACTIONS(2523), 1, - anon_sym_defined, - ACTIONS(2545), 1, - sym_number_literal, - ACTIONS(2525), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2527), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2531), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1007), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36108] = 7, + [36231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2527), 5, anon_sym_SLASH, - ACTIONS(2467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2469), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2489), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2533), 9, + ACTIONS(2525), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -75887,25 +76093,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36144] = 6, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_SLASH, ACTIONS(2467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2469), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2543), 4, + ACTIONS(2527), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2533), 11, + ACTIONS(2525), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -75915,47 +76122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36178] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2501), 1, - anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2547), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(919), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36218] = 3, + [36291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2551), 5, + ACTIONS(2561), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2549), 15, + ACTIONS(2559), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -75969,49 +76145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36246] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2501), 1, - anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2553), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(959), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36286] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 5, + ACTIONS(2565), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2555), 15, + ACTIONS(2563), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -76027,30 +76172,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36314] = 9, + [36347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2559), 1, + ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(981), 7, + STATE(999), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76058,30 +76203,62 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36354] = 9, + [36387] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1123), 1, + sym__abstract_declarator, + STATE(1133), 1, + sym_parameter_list, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2569), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1136), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2571), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [36429] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2561), 1, + ACTIONS(2573), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(992), 7, + STATE(921), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76089,30 +76266,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36394] = 9, + [36469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2563), 1, + ACTIONS(2575), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(979), 7, + STATE(922), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76120,30 +76297,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36434] = 9, + [36509] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2565), 1, + ACTIONS(2577), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(995), 7, + STATE(923), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76151,30 +76328,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36474] = 9, + [36549] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2567), 1, + ACTIONS(2579), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(994), 7, + STATE(924), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76182,30 +76359,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36514] = 9, + [36589] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2569), 1, + ACTIONS(2581), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1012), 7, + STATE(925), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76213,30 +76390,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36554] = 9, + [36629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2571), 1, + ACTIONS(2583), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(980), 7, + STATE(913), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76244,30 +76421,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36594] = 9, + [36669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2573), 1, + ACTIONS(2585), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(950), 7, + STATE(926), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76275,65 +76452,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36634] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 1, - anon_sym_LPAREN2, - ACTIONS(1411), 1, - anon_sym_STAR, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(1983), 1, - sym_identifier, - ACTIONS(1991), 1, - anon_sym_LBRACK, - STATE(1096), 1, - sym__declarator, - STATE(1138), 1, - sym__abstract_declarator, - STATE(1148), 1, - sym_parameter_list, - STATE(1433), 1, - sym_ms_based_modifier, - ACTIONS(2575), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1133), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36682] = 9, + [36709] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2577), 1, + ACTIONS(2587), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1001), 7, + STATE(927), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76341,30 +76483,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36722] = 9, + [36749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2579), 1, + ACTIONS(2589), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(999), 7, + STATE(928), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76372,30 +76514,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36762] = 9, + [36789] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2581), 1, + ACTIONS(2591), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1006), 7, + STATE(929), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76403,78 +76545,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36802] = 9, + [36829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2501), 1, - anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2583), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2595), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2593), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(924), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36842] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, - sym_identifier, - ACTIONS(2521), 1, - anon_sym_LPAREN2, - ACTIONS(2523), 1, - anon_sym_defined, - ACTIONS(2585), 1, - sym_number_literal, - ACTIONS(2525), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2599), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(998), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36882] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 5, + ACTIONS(2603), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2533), 15, + ACTIONS(2601), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -76490,7 +76620,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36910] = 10, + [36913] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + anon_sym_LPAREN2, + ACTIONS(2533), 1, + anon_sym_defined, + ACTIONS(2605), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(996), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [36953] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 1, @@ -76499,84 +76660,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1129), 1, + STATE(1120), 1, sym__abstract_declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(874), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2239), 3, + ACTIONS(2168), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2587), 6, + ACTIONS(2571), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36952] = 9, + [36995] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2501), 1, + ACTIONS(1409), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2589), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(920), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36992] = 9, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym__declarator, + STATE(1133), 1, + sym_parameter_list, + STATE(1138), 1, + sym__abstract_declarator, + STATE(1392), 1, + sym_ms_based_modifier, + ACTIONS(2607), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1136), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2591), 1, + ACTIONS(2609), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1009), 7, + STATE(978), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76584,30 +76749,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37032] = 9, + [37083] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2593), 1, + ACTIONS(2611), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1011), 7, + STATE(990), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76615,30 +76780,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37072] = 9, + [37123] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2595), 1, + ACTIONS(2613), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(978), 7, + STATE(944), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76646,66 +76811,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37112] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - anon_sym_SLASH, - ACTIONS(2473), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2475), 1, - anon_sym_AMP_AMP, - ACTIONS(2477), 1, - anon_sym_PIPE, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2469), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2483), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2485), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2487), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2489), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2597), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37162] = 9, + [37163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2599), 1, + ACTIONS(2615), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1013), 7, + STATE(991), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76713,30 +76842,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37202] = 9, + [37203] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2601), 1, + ACTIONS(2617), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(997), 7, + STATE(1006), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76744,30 +76873,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37242] = 9, + [37243] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2603), 1, + ACTIONS(2619), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(917), 7, + STATE(976), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76775,30 +76904,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37282] = 9, + [37283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2605), 1, + ACTIONS(2621), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(915), 7, + STATE(985), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76806,30 +76935,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37322] = 9, + [37323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2607), 1, + ACTIONS(2623), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1002), 7, + STATE(989), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76837,30 +76966,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37362] = 9, + [37363] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2609), 1, + ACTIONS(2625), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(944), 7, + STATE(995), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76868,30 +76997,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37402] = 9, + [37403] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2489), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2495), 1, anon_sym_defined, - ACTIONS(2611), 1, + ACTIONS(2627), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2497), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2499), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2503), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(973), 7, + STATE(986), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76899,120 +77028,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37442] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(1642), 1, - anon_sym_STAR, - ACTIONS(1991), 1, - anon_sym_LBRACK, - STATE(1125), 1, - sym__abstract_declarator, - STATE(1148), 1, - sym_parameter_list, - STATE(945), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1985), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1133), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2587), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [37484] = 3, + [37443] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 5, + ACTIONS(2469), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2613), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(2471), 1, anon_sym_PIPE_PIPE, + ACTIONS(2473), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37512] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2501), 1, - anon_sym_LPAREN2, - ACTIONS(2503), 1, - anon_sym_defined, - ACTIONS(2617), 1, - sym_number_literal, - ACTIONS(2505), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2507), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2511), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(983), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [37552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2621), 5, - anon_sym_SLASH, + ACTIONS(2475), 1, anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2619), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2467), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2483), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2485), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37580] = 10, + ACTIONS(2629), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37493] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 1, @@ -77021,55 +77073,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1126), 1, + STATE(1125), 1, sym__abstract_declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(874), 2, + STATE(933), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2623), 3, + ACTIONS(2631), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2587), 6, + ACTIONS(2571), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2627), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2625), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37650] = 10, + [37535] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 1, @@ -77078,30 +77105,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1127), 1, + STATE(1124), 1, sym__abstract_declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(966), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2629), 3, + ACTIONS(2633), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2587), 6, + ACTIONS(2571), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37692] = 10, + [37577] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 1, @@ -77110,30 +77137,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1116), 1, + STATE(1119), 1, sym__abstract_declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(962), 2, + STATE(948), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2631), 3, + ACTIONS(1985), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2587), 6, + ACTIONS(2571), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37734] = 10, + [37619] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + anon_sym_LPAREN2, + ACTIONS(2533), 1, + anon_sym_defined, + ACTIONS(2635), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(975), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [37659] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + anon_sym_LPAREN2, + ACTIONS(2533), 1, + anon_sym_defined, + ACTIONS(2637), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1005), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [37699] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 1, @@ -77142,78 +77231,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1121), 1, + STATE(1128), 1, sym__abstract_declarator, - STATE(1148), 1, + STATE(1133), 1, sym_parameter_list, - STATE(874), 2, + STATE(962), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2633), 3, + ACTIONS(2639), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1133), 4, + STATE(1136), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2587), 6, + ACTIONS(2571), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1911), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37804] = 9, + [37741] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2635), 1, + ACTIONS(2641), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(921), 7, + STATE(1009), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -77221,30 +77285,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37844] = 9, + [37781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2521), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2523), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2637), 1, + ACTIONS(2643), 1, sym_number_literal, - ACTIONS(2525), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2527), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2531), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(993), 7, + STATE(1012), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -77252,30 +77316,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37884] = 9, + [37821] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2639), 1, + ACTIONS(2645), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(976), 7, + STATE(1011), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -77283,30 +77347,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37924] = 9, + [37861] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2501), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2503), 1, + ACTIONS(2533), 1, anon_sym_defined, - ACTIONS(2641), 1, + ACTIONS(2647), 1, sym_number_literal, - ACTIONS(2505), 2, + ACTIONS(2535), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2507), 2, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2511), 5, + ACTIONS(2541), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(922), 7, + STATE(1004), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -77314,501 +77378,111 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2645), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2643), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - anon_sym_SLASH, - ACTIONS(2469), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2543), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2533), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38024] = 10, + [37901] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2307), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - STATE(1066), 1, - sym__field_declarator, - STATE(1354), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38065] = 3, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2555), 1, - anon_sym_LF, - ACTIONS(2557), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38092] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - anon_sym_SLASH, - ACTIONS(2473), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2475), 1, - anon_sym_AMP_AMP, - ACTIONS(2477), 1, - anon_sym_PIPE, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2647), 1, - anon_sym_RPAREN, - ACTIONS(2467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2469), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2483), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2485), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2487), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2489), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38141] = 3, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2643), 1, - anon_sym_LF, - ACTIONS(2645), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38168] = 12, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LF, - ACTIONS(2655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, - anon_sym_AMP_AMP, - ACTIONS(2659), 1, - anon_sym_PIPE, - ACTIONS(2661), 1, - anon_sym_CARET, - ACTIONS(2663), 1, - anon_sym_AMP, - ACTIONS(2651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2653), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2667), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [38213] = 12, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, - anon_sym_AMP_AMP, - ACTIONS(2659), 1, - anon_sym_PIPE, - ACTIONS(2661), 1, - anon_sym_CARET, - ACTIONS(2663), 1, - anon_sym_AMP, - ACTIONS(2671), 1, - anon_sym_LF, - ACTIONS(2651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2653), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2667), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [38258] = 11, - ACTIONS(2495), 1, - sym_comment, ACTIONS(2533), 1, - anon_sym_LF, - ACTIONS(2659), 1, - anon_sym_PIPE, - ACTIONS(2661), 1, - anon_sym_CARET, - ACTIONS(2663), 1, - anon_sym_AMP, - ACTIONS(2543), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2653), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2667), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [38301] = 12, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, - anon_sym_AMP_AMP, - ACTIONS(2659), 1, - anon_sym_PIPE, - ACTIONS(2661), 1, - anon_sym_CARET, - ACTIONS(2663), 1, - anon_sym_AMP, - ACTIONS(2673), 1, - anon_sym_LF, - ACTIONS(2651), 2, + anon_sym_defined, + ACTIONS(2649), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2653), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2667), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [38346] = 10, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1010), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [37941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, - anon_sym_STAR, - STATE(1089), 1, - sym__type_declarator, - STATE(1413), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38387] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - anon_sym_SLASH, - ACTIONS(2473), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2475), 1, - anon_sym_AMP_AMP, - ACTIONS(2477), 1, - anon_sym_PIPE, - ACTIONS(2479), 1, - anon_sym_CARET, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2675), 1, - anon_sym_RPAREN, - ACTIONS(2467), 2, + ACTIONS(2533), 1, + anon_sym_defined, + ACTIONS(2651), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2469), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2483), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2485), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2487), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2489), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38436] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2141), 1, - sym_primitive_type, - ACTIONS(2677), 1, - sym_identifier, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2135), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2137), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38471] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(1983), 1, - sym_identifier, - ACTIONS(2287), 1, - anon_sym_LPAREN2, - ACTIONS(2289), 1, - anon_sym_STAR, - STATE(1053), 1, - sym__declarator, - STATE(1433), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38512] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - STATE(1065), 1, - sym__field_declarator, - STATE(1354), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38553] = 10, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(974), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [37981] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2531), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, - anon_sym_STAR, - STATE(1078), 1, - sym__type_declarator, - STATE(1413), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38594] = 3, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2625), 1, - anon_sym_LF, - ACTIONS(2627), 18, + ACTIONS(2533), 1, + anon_sym_defined, + ACTIONS(2653), 1, + sym_number_literal, + ACTIONS(2535), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2537), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2541), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(981), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [38021] = 4, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2525), 1, + anon_sym_LF, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2527), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -77822,69 +77496,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38621] = 12, - ACTIONS(2495), 1, + [38050] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_PIPE_PIPE, ACTIONS(2657), 1, + anon_sym_LF, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, + ACTIONS(2665), 1, anon_sym_PIPE, - ACTIONS(2661), 1, + ACTIONS(2667), 1, anon_sym_CARET, - ACTIONS(2663), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38666] = 3, - ACTIONS(2495), 1, + [38095] = 11, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2535), 1, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2537), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2665), 1, anon_sym_PIPE, + ACTIONS(2667), 1, anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, + ACTIONS(2527), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2655), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38693] = 3, - ACTIONS(2495), 1, + [38138] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(2543), 1, anon_sym_LF, - ACTIONS(2621), 18, + ACTIONS(2545), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -77903,18 +77585,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38720] = 4, - ACTIONS(2495), 1, + [38165] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_PIPE, + ACTIONS(2667), 1, + anon_sym_CARET, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2677), 1, anon_sym_LF, - ACTIONS(2653), 3, + ACTIONS(2659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2543), 15, + ACTIONS(2673), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [38210] = 3, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LF, + ACTIONS(2553), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -77928,78 +77642,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38749] = 12, - ACTIONS(2495), 1, + [38237] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2525), 1, + anon_sym_LF, + ACTIONS(2527), 1, anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, + ACTIONS(2663), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, + ACTIONS(2665), 1, anon_sym_PIPE, - ACTIONS(2661), 1, + ACTIONS(2667), 1, anon_sym_CARET, - ACTIONS(2663), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38794] = 12, - ACTIONS(2495), 1, + [38282] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2543), 1, + ACTIONS(2527), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2651), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38309] = 3, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_LF, + ACTIONS(2561), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + [38336] = 3, + ACTIONS(1919), 1, + anon_sym_LF, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(1921), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38839] = 3, - ACTIONS(2495), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38363] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2601), 1, anon_sym_LF, - ACTIONS(2543), 18, + ACTIONS(2603), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -78018,30 +77771,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38866] = 10, + [38390] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_SLASH, + ACTIONS(2471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2473), 1, + anon_sym_AMP_AMP, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, + anon_sym_AMP, + ACTIONS(2679), 1, + anon_sym_RPAREN, + ACTIONS(2465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2483), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2485), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38439] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_SLASH, + ACTIONS(2471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2473), 1, + anon_sym_AMP_AMP, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + anon_sym_CARET, + ACTIONS(2479), 1, + anon_sym_AMP, + ACTIONS(2681), 1, + anon_sym_RPAREN, + ACTIONS(2465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2483), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2485), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38488] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1086), 1, - sym__type_declarator, - STATE(1413), 1, + STATE(1068), 1, + sym__field_declarator, + STATE(1436), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -78049,78 +77872,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38907] = 12, - ACTIONS(2495), 1, + [38529] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2597), 1, + anon_sym_LF, + ACTIONS(2599), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38556] = 3, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2593), 1, + anon_sym_LF, + ACTIONS(2595), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2661), 1, anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38583] = 12, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, ACTIONS(2663), 1, + anon_sym_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_PIPE, + ACTIONS(2667), 1, + anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, ACTIONS(2683), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38952] = 12, - ACTIONS(2495), 1, + [38628] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, + ACTIONS(2663), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, + ACTIONS(2665), 1, anon_sym_PIPE, - ACTIONS(2661), 1, + ACTIONS(2667), 1, anon_sym_CARET, - ACTIONS(2663), 1, + ACTIONS(2669), 1, anon_sym_AMP, ACTIONS(2685), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38997] = 3, - ACTIONS(2495), 1, + [38673] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2563), 1, anon_sym_LF, - ACTIONS(2615), 18, + ACTIONS(2565), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -78139,118 +78010,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [39024] = 3, - ACTIONS(1911), 1, - anon_sym_LF, - ACTIONS(2495), 1, + [38700] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2293), 1, + sym_identifier, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + STATE(1084), 1, + sym__type_declarator, + STATE(1343), 1, + sym_ms_based_modifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38741] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, + anon_sym_STAR, + STATE(1045), 1, + sym__declarator, + STATE(1392), 1, + sym_ms_based_modifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38782] = 12, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_AMP_AMP, + ACTIONS(2665), 1, anon_sym_PIPE, + ACTIONS(2667), 1, anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, + ACTIONS(2687), 1, + anon_sym_LF, + ACTIONS(2659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2655), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39051] = 10, - ACTIONS(2495), 1, + [38827] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, - anon_sym_LF, ACTIONS(2661), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(2663), 1, + anon_sym_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_PIPE, + ACTIONS(2667), 1, + anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(2651), 2, + ACTIONS(2689), 1, + anon_sym_LF, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2543), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39092] = 12, - ACTIONS(2495), 1, + [38872] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2293), 1, + sym_identifier, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + anon_sym_STAR, + STATE(1077), 1, + sym__type_declarator, + STATE(1343), 1, + sym_ms_based_modifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38913] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, + anon_sym_STAR, + STATE(1061), 1, + sym__declarator, + STATE(1392), 1, + sym_ms_based_modifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38954] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, + ACTIONS(2663), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, + ACTIONS(2665), 1, anon_sym_PIPE, - ACTIONS(2661), 1, + ACTIONS(2667), 1, anon_sym_CARET, - ACTIONS(2663), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(2687), 1, + ACTIONS(2691), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39137] = 10, + [38999] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1983), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1038), 1, - sym__declarator, - STATE(1433), 1, + STATE(1086), 1, + sym__type_declarator, + STATE(1343), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39040] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2283), 1, + sym_identifier, + ACTIONS(2285), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + anon_sym_STAR, + STATE(1070), 1, + sym__field_declarator, + STATE(1436), 1, + sym_ms_based_modifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -78258,165 +78295,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [39178] = 3, - ACTIONS(2495), 1, + [39081] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 1, + sym_primitive_type, + ACTIONS(2693), 1, + sym_identifier, + STATE(739), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2191), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2187), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2189), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39116] = 12, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_LF, - ACTIONS(2541), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_AMP_AMP, + ACTIONS(2665), 1, anon_sym_PIPE, + ACTIONS(2667), 1, anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, + ACTIONS(2695), 1, + anon_sym_LF, + ACTIONS(2659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39205] = 3, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2549), 1, - anon_sym_LF, - ACTIONS(2551), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39232] = 9, - ACTIONS(2495), 1, + [39161] = 10, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2663), 1, + ACTIONS(2667), 1, + anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2543), 4, + ACTIONS(2527), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2667), 4, + ACTIONS(2655), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39271] = 8, - ACTIONS(2495), 1, + [39202] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2527), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2543), 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39233] = 12, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_AMP_AMP, + ACTIONS(2665), 1, anon_sym_PIPE, + ACTIONS(2667), 1, anon_sym_CARET, + ACTIONS(2669), 1, anon_sym_AMP, - [39308] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(1983), 1, - sym_identifier, - ACTIONS(2287), 1, - anon_sym_LPAREN2, - ACTIONS(2289), 1, - anon_sym_STAR, - STATE(1044), 1, - sym__declarator, - STATE(1433), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39349] = 7, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(2533), 1, + ACTIONS(2697), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2669), 2, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2543), 7, + [39278] = 3, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2547), 1, + anon_sym_LF, + ACTIONS(2549), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -78424,25 +78464,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [39384] = 10, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39305] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2305), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2307), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2309), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1067), 1, + STATE(1073), 1, sym__field_declarator, - STATE(1354), 1, + STATE(1436), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(873), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1105), 5, + STATE(1115), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -78455,22 +78501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [39425] = 6, - ACTIONS(2495), 1, + [39346] = 6, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2543), 11, + ACTIONS(2527), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -78482,52 +78528,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39458] = 12, - ACTIONS(2495), 1, + [39379] = 9, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2525), 1, + anon_sym_LF, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2655), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2527), 4, anon_sym_PIPE_PIPE, - ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2663), 1, - anon_sym_AMP, - ACTIONS(2689), 1, + ACTIONS(2673), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [39418] = 8, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2669), 2, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2653), 3, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2667), 4, + ACTIONS(2673), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39503] = 5, - ACTIONS(2495), 1, + ACTIONS(2527), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [39455] = 7, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2525), 1, anon_sym_LF, - ACTIONS(2651), 2, + ACTIONS(2659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2653), 3, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2655), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2543), 13, + ACTIONS(2673), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(2527), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -78535,31 +78615,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39534] = 7, + [39490] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, + anon_sym_STAR, + STATE(1039), 1, + sym__declarator, + STATE(1392), 1, + sym_ms_based_modifier, + STATE(873), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39531] = 7, ACTIONS(3), 1, sym_comment, - STATE(1016), 1, + STATE(1015), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2693), 2, + ACTIONS(2701), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2698), 2, + ACTIONS(2706), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(1014), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2695), 3, + ACTIONS(2703), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2691), 8, + ACTIONS(2699), 8, anon_sym___based, anon_sym_const, anon_sym_volatile, @@ -78568,13 +78673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [39568] = 3, + [39565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 2, + ACTIONS(2711), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2701), 13, + ACTIONS(2709), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -78588,13 +78693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [39591] = 3, + [39588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 2, + ACTIONS(2715), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2705), 13, + ACTIONS(2713), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -78608,116 +78713,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [39614] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_SEMI, - ACTIONS(2711), 1, - anon_sym_COLON, - STATE(1045), 1, - sym__field_declarator, - STATE(1354), 1, - sym_ms_based_modifier, - STATE(1359), 1, - sym_bitfield_clause, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [39652] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2713), 1, - anon_sym_SEMI, - STATE(1058), 1, - sym__field_declarator, - STATE(1353), 1, - sym_bitfield_clause, - STATE(1354), 1, - sym_ms_based_modifier, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [39690] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_LPAREN2, - ACTIONS(2309), 1, - anon_sym_STAR, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2715), 1, - anon_sym_SEMI, - STATE(1048), 1, - sym__field_declarator, - STATE(1354), 1, - sym_ms_based_modifier, - STATE(1488), 1, - sym_bitfield_clause, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [39728] = 9, + [39611] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1031), 1, sym__declarator, - STATE(1215), 1, + STATE(1174), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39760] = 12, + [39643] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(592), 1, + ACTIONS(119), 1, anon_sym_LBRACE, ACTIONS(2717), 1, anon_sym_COMMA, @@ -78729,90 +78753,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2725), 1, anon_sym_EQ, - STATE(331), 1, + STATE(107), 1, sym_compound_statement, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1204), 1, + STATE(1209), 1, aux_sym_declaration_repeat1, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39798] = 9, + [39681] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1983), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1070), 1, - sym__declarator, - STATE(1217), 1, - sym_init_declarator, - STATE(1433), 1, + ACTIONS(2727), 1, + anon_sym_SEMI, + STATE(1060), 1, + sym__field_declarator, + STATE(1436), 1, sym_ms_based_modifier, - STATE(1093), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [39830] = 9, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [39713] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1063), 1, sym__declarator, - STATE(1195), 1, + STATE(1190), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39862] = 9, + [39745] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1061), 1, + STATE(1062), 1, sym__declarator, - STATE(1215), 1, + STATE(1201), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39894] = 12, + [39777] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(329), 1, + ACTIONS(444), 1, anon_sym_LBRACE, ACTIONS(2717), 1, anon_sym_COMMA, @@ -78822,164 +78846,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2727), 1, + ACTIONS(2729), 1, anon_sym_SEMI, - STATE(312), 1, + STATE(369), 1, sym_compound_statement, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1183), 1, + STATE(1184), 1, aux_sym_declaration_repeat1, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39932] = 9, + [39815] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1983), 1, + ACTIONS(2283), 1, sym_identifier, + ACTIONS(2285), 1, + anon_sym_LPAREN2, ACTIONS(2287), 1, + anon_sym_STAR, + ACTIONS(2731), 1, + anon_sym_SEMI, + STATE(1036), 1, + sym__field_declarator, + STATE(1436), 1, + sym_ms_based_modifier, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [39847] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1090), 1, + STATE(1029), 1, sym__declarator, - STATE(1288), 1, + STATE(1201), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39964] = 9, + [39879] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1072), 1, + STATE(1071), 1, sym__declarator, - STATE(1211), 1, + STATE(1197), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39996] = 12, + [39911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(119), 1, + ACTIONS(2341), 1, anon_sym_LBRACE, - ACTIONS(2717), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, + ACTIONS(2733), 1, + anon_sym_COLON, + STATE(897), 1, + sym_enumerator_list, + ACTIONS(2339), 9, anon_sym_LPAREN2, - ACTIONS(2723), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2725), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_SEMI, - STATE(105), 1, - sym_compound_statement, - STATE(1046), 1, - sym_parameter_list, - STATE(1207), 1, - aux_sym_declaration_repeat1, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [40034] = 9, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39935] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(1078), 1, sym__declarator, - STATE(1195), 1, + STATE(1242), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40066] = 9, + [39967] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1021), 1, + STATE(1022), 1, sym__declarator, - STATE(1211), 1, + STATE(1190), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40098] = 9, + [39999] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + ACTIONS(2725), 1, + anon_sym_EQ, + ACTIONS(2736), 1, + anon_sym_SEMI, + STATE(364), 1, + sym_compound_statement, + STATE(1037), 1, + sym_parameter_list, + STATE(1220), 1, + aux_sym_declaration_repeat1, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [40037] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(1064), 1, sym__declarator, - STATE(1217), 1, + STATE(1174), 1, sym_init_declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40130] = 12, + [40069] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(329), 1, anon_sym_LBRACE, ACTIONS(2717), 1, anon_sym_COMMA, @@ -78989,244 +79055,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2731), 1, + ACTIONS(2738), 1, anon_sym_SEMI, - STATE(311), 1, + STATE(314), 1, sym_compound_statement, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1185), 1, + STATE(1189), 1, aux_sym_declaration_repeat1, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40168] = 8, + [40107] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1099), 1, + STATE(1018), 1, sym__declarator, - STATE(1433), 1, + STATE(1197), 1, + sym_init_declarator, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40197] = 8, + [40139] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2305), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2307), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2309), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1106), 1, + ACTIONS(2740), 1, + anon_sym_SEMI, + STATE(1056), 1, sym__field_declarator, - STATE(1354), 1, + STATE(1436), 1, sym_ms_based_modifier, - STATE(1105), 5, + STATE(1115), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [40226] = 8, + [40171] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2283), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2285), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2287), 1, anon_sym_STAR, - STATE(1081), 1, - sym__type_declarator, - STATE(1413), 1, + STATE(1067), 1, + sym__field_declarator, + STATE(1436), 1, sym_ms_based_modifier, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [40255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 1, - anon_sym___attribute__, - ACTIONS(2738), 1, - anon_sym_LBRACK, - STATE(1036), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2733), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [40278] = 8, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [40200] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1095), 1, sym__declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40307] = 7, + [40229] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2723), 1, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(2744), 1, + anon_sym_SEMI, + ACTIONS(2746), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_COLON, + STATE(1106), 1, + sym_parameter_list, + STATE(1229), 1, + sym_bitfield_clause, + STATE(1230), 1, + aux_sym_field_declaration_repeat1, + STATE(1091), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [40264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, + anon_sym___attribute__, + ACTIONS(2754), 1, anon_sym_LBRACK, - STATE(1046), 1, - sym_parameter_list, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2740), 5, + STATE(1053), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2750), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40334] = 8, + [40287] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1083), 1, + STATE(1075), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40363] = 8, + [40316] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(1037), 1, + sym_parameter_list, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2756), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [40343] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1103), 1, + STATE(1102), 1, sym__declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40392] = 8, + [40372] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1084), 1, + STATE(1082), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40421] = 8, + [40401] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(1037), 1, + sym_parameter_list, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2758), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [40428] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1095), 1, + STATE(1114), 1, sym__declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40450] = 7, + [40457] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2293), 1, + sym_identifier, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2723), 1, - anon_sym_LBRACK, - STATE(1046), 1, - sym_parameter_list, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2742), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [40477] = 7, + ACTIONS(2297), 1, + anon_sym_STAR, + STATE(1083), 1, + sym__type_declarator, + STATE(1343), 1, + sym_ms_based_modifier, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40486] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -79235,52 +79350,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2744), 5, + ACTIONS(2760), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [40504] = 11, + [40513] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2719), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2293), 1, + sym_identifier, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2746), 1, - anon_sym_COMMA, - ACTIONS(2748), 1, - anon_sym_SEMI, - ACTIONS(2750), 1, - anon_sym_LBRACK, - STATE(1115), 1, - sym_parameter_list, - STATE(1137), 1, - aux_sym_field_declaration_repeat1, - STATE(1355), 1, - sym_bitfield_clause, - STATE(1076), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [40539] = 5, + ACTIONS(2297), 1, + anon_sym_STAR, + STATE(1081), 1, + sym__type_declarator, + STATE(1343), 1, + sym_ms_based_modifier, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(2764), 1, anon_sym___attribute__, - ACTIONS(2756), 1, + ACTIONS(2767), 1, anon_sym_LBRACK, - STATE(1049), 2, + STATE(1047), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2752), 7, + ACTIONS(2762), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79288,431 +79400,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40562] = 8, + [40565] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1111), 1, - sym__type_declarator, - STATE(1413), 1, + STATE(1093), 1, + sym__declarator, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [40591] = 11, + STATE(1104), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [40594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(2771), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2746), 1, - anon_sym_COMMA, - ACTIONS(2750), 1, + ACTIONS(2774), 1, anon_sym_LBRACK, - ACTIONS(2758), 1, - anon_sym_SEMI, - STATE(1115), 1, - sym_parameter_list, - STATE(1142), 1, - aux_sym_field_declaration_repeat1, - STATE(1468), 1, - sym_bitfield_clause, - STATE(1076), 2, + STATE(1049), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - anon_sym___attribute__, - ACTIONS(2762), 1, - anon_sym_LBRACK, - STATE(1036), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2760), 7, + ACTIONS(2769), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40649] = 8, + anon_sym_COLON, + [40617] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1091), 1, + STATE(1111), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40678] = 8, + [40646] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, ACTIONS(1983), 1, sym_identifier, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - ACTIONS(2289), 1, + ACTIONS(2301), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(1099), 1, sym__declarator, - STATE(1433), 1, + STATE(1392), 1, sym_ms_based_modifier, - STATE(1093), 5, + STATE(1104), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40707] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym___based, - ACTIONS(2311), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_LPAREN2, - ACTIONS(2315), 1, - anon_sym_STAR, - STATE(1085), 1, - sym__type_declarator, - STATE(1413), 1, - sym_ms_based_modifier, - STATE(1119), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [40736] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2723), 1, - anon_sym_LBRACK, - STATE(1046), 1, - sym_parameter_list, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2764), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [40763] = 8, + [40675] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1102), 1, + STATE(1088), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40792] = 5, + [40704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 1, + ACTIONS(2752), 1, + anon_sym___attribute__, + ACTIONS(2778), 1, anon_sym_LBRACK, - STATE(1055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2766), 7, + STATE(1047), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2776), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [40815] = 8, + [40727] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, STATE(1087), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40844] = 8, + [40756] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1079), 1, + STATE(1080), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40873] = 11, + [40785] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 1, - anon_sym_COLON, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2746), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(2748), 1, + anon_sym_COLON, + ACTIONS(2780), 1, anon_sym_SEMI, - STATE(1115), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1147), 1, + STATE(1222), 1, aux_sym_field_declaration_repeat1, - STATE(1308), 1, + STATE(1224), 1, sym_bitfield_clause, - STATE(1076), 2, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40908] = 8, + [40820] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2305), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2307), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2309), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1073), 1, - sym__field_declarator, - STATE(1354), 1, + STATE(1105), 1, + sym__type_declarator, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1105), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [40937] = 8, + STATE(1127), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40849] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2311), 1, + ACTIONS(2293), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2315), 1, + ACTIONS(2297), 1, anon_sym_STAR, - STATE(1077), 1, + STATE(1076), 1, sym__type_declarator, - STATE(1413), 1, + STATE(1343), 1, sym_ms_based_modifier, - STATE(1119), 5, + STATE(1127), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40966] = 10, + [40878] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2283), 1, + sym_identifier, + ACTIONS(2285), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + anon_sym_STAR, + STATE(1110), 1, + sym__field_declarator, + STATE(1436), 1, + sym_ms_based_modifier, + STATE(1115), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [40907] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 1, - anon_sym_COMMA, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2723), 1, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2725), 1, - anon_sym_EQ, - ACTIONS(2731), 1, + ACTIONS(2748), 1, + anon_sym_COLON, + ACTIONS(2782), 1, anon_sym_SEMI, - STATE(1046), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1185), 1, - aux_sym_declaration_repeat1, - STATE(1064), 2, + STATE(1191), 1, + aux_sym_field_declaration_repeat1, + STATE(1213), 1, + sym_bitfield_clause, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40998] = 3, + [40942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2775), 9, + STATE(1037), 1, + sym_parameter_list, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2784), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [41016] = 3, + [40969] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACK, - ACTIONS(2779), 9, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2717), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2719), 1, anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + ACTIONS(2725), 1, + anon_sym_EQ, + ACTIONS(2736), 1, anon_sym_SEMI, - anon_sym___attribute__, + STATE(1037), 1, + sym_parameter_list, + STATE(1220), 1, + aux_sym_declaration_repeat1, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41001] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + ACTIONS(2725), 1, anon_sym_EQ, - anon_sym_COLON, - [41034] = 5, + ACTIONS(2729), 1, + anon_sym_SEMI, + STATE(1037), 1, + sym_parameter_list, + STATE(1184), 1, + aux_sym_declaration_repeat1, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41033] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 1, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1055), 2, + ACTIONS(2725), 1, + anon_sym_EQ, + ACTIONS(2738), 1, + anon_sym_SEMI, + STATE(1037), 1, + sym_parameter_list, + STATE(1189), 1, + aux_sym_declaration_repeat1, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2783), 6, + [41065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2788), 1, + anon_sym_LBRACK, + ACTIONS(2786), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41056] = 7, + anon_sym_COLON, + [41083] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1115), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1076), 2, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2787), 4, + ACTIONS(2790), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [41082] = 7, + [41109] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1115), 1, + ACTIONS(2748), 1, + anon_sym_COLON, + STATE(1106), 1, sym_parameter_list, - STATE(1076), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2789), 4, + STATE(1258), 1, + sym_bitfield_clause, + ACTIONS(2792), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - [41108] = 7, + STATE(1091), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41139] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1115), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1076), 2, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2791), 4, + ACTIONS(2794), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [41134] = 3, + [41165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2798), 1, anon_sym_LBRACK, - ACTIONS(2793), 9, + ACTIONS(2796), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79722,29 +79848,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [41152] = 10, + [41183] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 1, - anon_sym_COMMA, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2723), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2725), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_SEMI, - STATE(1046), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1207), 1, - aux_sym_declaration_repeat1, - STATE(1064), 2, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41184] = 10, + ACTIONS(2800), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [41209] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -79753,441 +79876,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(2719), 1, anon_sym_LPAREN2, + ACTIONS(2721), 1, + anon_sym_SEMI, ACTIONS(2723), 1, anon_sym_LBRACK, ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2727), 1, - anon_sym_SEMI, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1183), 1, + STATE(1209), 1, aux_sym_declaration_repeat1, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41216] = 7, + [41241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2750), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - STATE(1115), 1, - sym_parameter_list, - STATE(1076), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2797), 4, + ACTIONS(2802), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [41242] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2721), 1, anon_sym_SEMI, - ACTIONS(2723), 1, - anon_sym_LBRACK, - ACTIONS(2725), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(1046), 1, - sym_parameter_list, - STATE(1204), 1, - aux_sym_declaration_repeat1, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41274] = 7, + anon_sym_COLON, + [41259] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1115), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1076), 2, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2799), 3, + ACTIONS(2806), 4, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [41299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2805), 1, - sym_system_lib_string, - STATE(1346), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2803), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41320] = 7, + [41285] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - STATE(1128), 1, - sym_parameter_list, - STATE(1104), 2, + STATE(1049), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2807), 3, + ACTIONS(2808), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [41345] = 5, + anon_sym_LBRACE, + anon_sym_EQ, + [41307] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2814), 1, + anon_sym_SEMI, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1055), 2, + STATE(1118), 1, + sym_parameter_list, + STATE(1216), 1, + aux_sym_type_definition_repeat2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2811), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - [41366] = 9, + [41336] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_LBRACK, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2817), 1, + ACTIONS(2816), 1, + anon_sym_LBRACK, + ACTIONS(2818), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1175), 1, + STATE(1172), 1, aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41395] = 7, + [41365] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2819), 3, + ACTIONS(2820), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [41420] = 9, + [41390] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2815), 1, + ACTIONS(2725), 1, + anon_sym_EQ, + STATE(1037), 1, + sym_parameter_list, + ACTIONS(2822), 2, anon_sym_COMMA, - ACTIONS(2821), 1, anon_sym_SEMI, - STATE(1128), 1, - sym_parameter_list, - STATE(1194), 1, - aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2825), 1, - sym_system_lib_string, - STATE(1397), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2803), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41470] = 9, + [41417] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2815), 1, - anon_sym_COMMA, - ACTIONS(2827), 1, - anon_sym_SEMI, - STATE(1128), 1, - sym_parameter_list, - STATE(1205), 1, - aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1118), 1, + sym_parameter_list, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, - sym_system_lib_string, - STATE(1464), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2803), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41520] = 9, + ACTIONS(2824), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [41442] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_LBRACK, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2833), 1, + ACTIONS(2816), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1197), 1, + STATE(1227), 1, aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41549] = 9, + [41471] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_LBRACK, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2835), 1, + ACTIONS(2816), 1, + anon_sym_LBRACK, + ACTIONS(2828), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1190), 1, + STATE(1206), 1, aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41578] = 9, + [41500] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_LBRACK, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2837), 1, + ACTIONS(2816), 1, + anon_sym_LBRACK, + ACTIONS(2830), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1213), 1, + STATE(1225), 1, aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41607] = 7, + [41529] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1128), 1, + ACTIONS(2832), 1, + anon_sym_SEMI, + STATE(1118), 1, sym_parameter_list, - STATE(1104), 2, + STATE(1171), 1, + aux_sym_type_definition_repeat2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2839), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [41632] = 9, + [41558] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2815), 1, - anon_sym_COMMA, - ACTIONS(2841), 1, - anon_sym_SEMI, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1214), 1, - aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41661] = 5, + ACTIONS(2834), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [41583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2845), 1, + ACTIONS(2840), 1, sym_system_lib_string, - STATE(1423), 2, + STATE(1413), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2803), 5, + ACTIONS(2838), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [41682] = 7, + [41604] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2847), 3, + ACTIONS(2842), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [41707] = 8, + [41629] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2723), 1, - anon_sym_LBRACK, - ACTIONS(2725), 1, - anon_sym_EQ, - STATE(1046), 1, - sym_parameter_list, - ACTIONS(2849), 2, + ACTIONS(2812), 1, anon_sym_COMMA, + ACTIONS(2816), 1, + anon_sym_LBRACK, + ACTIONS(2844), 1, anon_sym_SEMI, - STATE(1064), 2, + STATE(1118), 1, + sym_parameter_list, + STATE(1175), 1, + aux_sym_type_definition_repeat2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41734] = 9, + [41658] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_LBRACK, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(2851), 1, + ACTIONS(2816), 1, + anon_sym_LBRACK, + ACTIONS(2846), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1224), 1, + STATE(1218), 1, aux_sym_type_definition_repeat2, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41763] = 3, + [41687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - anon_sym_LBRACK, - ACTIONS(2853), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [41779] = 3, + ACTIONS(2848), 1, + sym_identifier, + ACTIONS(2850), 1, + sym_system_lib_string, + STATE(1390), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2838), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2852), 1, + sym_identifier, + ACTIONS(2854), 1, + sym_system_lib_string, + STATE(1348), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2838), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2858), 1, anon_sym_LBRACK, - ACTIONS(2857), 7, + STATE(1049), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2856), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, + [41750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2860), 1, + sym_identifier, + ACTIONS(2862), 1, + sym_system_lib_string, + STATE(1456), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2838), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41771] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(444), 1, anon_sym_LBRACE, - anon_sym_EQ, - [41795] = 3, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(325), 1, + sym_compound_statement, + STATE(1037), 1, + sym_parameter_list, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(2866), 1, anon_sym_LBRACK, - ACTIONS(2861), 7, + ACTIONS(2864), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80195,25 +80302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41811] = 8, + [41813] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(329), 1, anon_sym_LBRACE, ACTIONS(2719), 1, anon_sym_LPAREN2, ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(370), 1, + STATE(348), 1, sym_compound_statement, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41837] = 7, + [41839] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -80222,69 +80329,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - ACTIONS(2865), 2, + ACTIONS(2868), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41861] = 3, + [41863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(2867), 7, + STATE(1049), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2870), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [41877] = 8, + [41883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(2876), 1, + anon_sym_LBRACK, + ACTIONS(2874), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(119), 1, anon_sym_LBRACE, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2723), 1, - anon_sym_LBRACK, - STATE(113), 1, - sym_compound_statement, - STATE(1046), 1, - sym_parameter_list, - STATE(1064), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41903] = 8, + anon_sym_EQ, + [41899] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(329), 1, + ACTIONS(41), 1, anon_sym_LBRACE, ACTIONS(2719), 1, anon_sym_LPAREN2, ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(338), 1, + STATE(321), 1, sym_compound_statement, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41929] = 3, + [41925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2871), 7, + ACTIONS(2878), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80292,12 +80396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41945] = 3, + [41941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - ACTIONS(2875), 7, + ACTIONS(2882), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80305,778 +80409,740 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41961] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_LBRACK, - STATE(1128), 1, - sym_parameter_list, - ACTIONS(2879), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1104), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41985] = 8, + [41957] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(592), 1, + ACTIONS(119), 1, anon_sym_LBRACE, ACTIONS(2719), 1, anon_sym_LPAREN2, ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(369), 1, + STATE(110), 1, sym_compound_statement, - STATE(1046), 1, + STATE(1037), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1074), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42011] = 5, + [41983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2883), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - STATE(1055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2881), 4, + ACTIONS(2886), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - [42031] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [41999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(2885), 6, + ACTIONS(2890), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [42046] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + [42015] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2750), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2889), 1, - anon_sym_RPAREN, - STATE(1115), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1076), 2, + ACTIONS(2894), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42069] = 3, + [42039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(2898), 1, anon_sym_LBRACK, - ACTIONS(2891), 6, + ACTIONS(2896), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [42084] = 3, + [42054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 1, + anon_sym_LBRACK, + ACTIONS(2900), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [42069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2906), 1, anon_sym_LBRACK, - ACTIONS(2895), 6, + ACTIONS(2904), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [42099] = 3, + [42084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, + ACTIONS(2910), 1, anon_sym_LBRACK, - ACTIONS(2899), 6, + ACTIONS(2908), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [42114] = 7, + [42099] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2723), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2912), 1, anon_sym_RPAREN, - STATE(1046), 1, + STATE(1106), 1, sym_parameter_list, - STATE(1064), 2, + STATE(1091), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42137] = 7, + [42122] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, + ACTIONS(2914), 1, anon_sym_RPAREN, - STATE(1128), 1, + STATE(1118), 1, sym_parameter_list, - STATE(1104), 2, + STATE(1097), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2907), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [42175] = 3, + [42145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2918), 1, anon_sym_LBRACK, - ACTIONS(2911), 6, + ACTIONS(2916), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [42190] = 3, + [42160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2922), 1, anon_sym_LBRACK, - ACTIONS(2915), 6, + ACTIONS(2920), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [42205] = 3, + [42175] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_LBRACK, - ACTIONS(2919), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [42220] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1139), 1, - sym_parameter_list, - ACTIONS(2923), 3, - anon_sym_COMMA, + ACTIONS(2924), 1, anon_sym_RPAREN, - anon_sym_COLON, - [42238] = 3, + STATE(1037), 1, + sym_parameter_list, + STATE(1074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(2928), 1, anon_sym_LBRACK, - ACTIONS(2927), 5, + ACTIONS(2926), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42252] = 3, + anon_sym_COLON, + [42213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2932), 1, anon_sym_LBRACK, - ACTIONS(2931), 5, + ACTIONS(2930), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42266] = 3, + anon_sym_COLON, + [42228] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(2934), 1, + anon_sym_LBRACK, ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(2939), 1, + anon_sym_DOT, + STATE(1117), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [42246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2944), 1, anon_sym_LBRACK, - ACTIONS(2935), 5, + ACTIONS(2942), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42280] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LBRACK, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2941), 1, - anon_sym_DOT, - STATE(1131), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [42298] = 5, + [42260] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - STATE(1139), 1, + STATE(1144), 1, sym_parameter_list, - ACTIONS(2943), 3, + ACTIONS(2946), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [42316] = 3, + [42278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 1, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2948), 1, anon_sym_LBRACK, - ACTIONS(2945), 5, + STATE(1144), 1, + sym_parameter_list, + ACTIONS(2950), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [42330] = 3, + anon_sym_COLON, + [42296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2954), 1, anon_sym_LBRACK, - ACTIONS(2949), 5, + ACTIONS(2952), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42344] = 3, + [42310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, + ACTIONS(2958), 1, anon_sym_LBRACK, - ACTIONS(2953), 5, + ACTIONS(2956), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42358] = 5, + [42324] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - STATE(1139), 1, + STATE(1144), 1, sym_parameter_list, - ACTIONS(2957), 3, + ACTIONS(2960), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [42376] = 5, + [42342] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - STATE(1139), 1, + STATE(1144), 1, sym_parameter_list, - ACTIONS(2959), 3, + ACTIONS(2962), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [42394] = 5, + [42360] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - STATE(1139), 1, + STATE(1144), 1, sym_parameter_list, - ACTIONS(2961), 3, + ACTIONS(2964), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [42412] = 3, + [42378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_LBRACK, + ACTIONS(2966), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2972), 1, anon_sym_LBRACK, - ACTIONS(2963), 5, + ACTIONS(2970), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42426] = 5, + [42406] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - STATE(1139), 1, + STATE(1144), 1, sym_parameter_list, - ACTIONS(2967), 3, + ACTIONS(2974), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [42444] = 3, + [42424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(2978), 1, anon_sym_LBRACK, - ACTIONS(2969), 5, + ACTIONS(2976), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [42458] = 5, + [42438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 1, + ACTIONS(1439), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2980), 1, anon_sym_EQ, - ACTIONS(2978), 1, + ACTIONS(2982), 1, anon_sym_DOT, - STATE(1131), 3, + STATE(1117), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [42476] = 2, + [42456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 5, + ACTIONS(2986), 1, + anon_sym_LBRACK, + ACTIONS(2984), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 1, anon_sym_LBRACK, - anon_sym_COLON, - [42487] = 2, + ACTIONS(2988), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 5, + ACTIONS(2992), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42498] = 2, + [42495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 5, + ACTIONS(2994), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42509] = 2, + [42506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 5, + ACTIONS(2996), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42520] = 5, + [42517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - ACTIONS(2991), 1, - anon_sym_COLON_COLON, - STATE(1290), 1, - sym_argument_list, - ACTIONS(2989), 2, + ACTIONS(2998), 5, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [42537] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [42528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2746), 1, - anon_sym_COMMA, - ACTIONS(2993), 1, - anon_sym_SEMI, - STATE(1156), 1, - aux_sym_field_declaration_repeat1, - STATE(1295), 1, - sym_bitfield_clause, - [42556] = 5, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2335), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, + sym_identifier, + STATE(889), 1, + sym_field_declaration_list, + STATE(1188), 1, + sym_ms_declspec_modifier, + [42547] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2925), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - STATE(1139), 1, + STATE(1144), 1, sym_parameter_list, - ACTIONS(2865), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 5, + ACTIONS(2868), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [42584] = 2, + [42564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 5, + ACTIONS(3002), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42595] = 2, + [42575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 5, + ACTIONS(3004), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42606] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2746), 1, - anon_sym_COMMA, - ACTIONS(3001), 1, - anon_sym_SEMI, - STATE(1156), 1, - aux_sym_field_declaration_repeat1, - STATE(1445), 1, - sym_bitfield_clause, - [42625] = 2, + [42586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 5, + ACTIONS(3006), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42636] = 6, + [42597] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2337), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(3005), 1, + ACTIONS(3008), 1, sym_identifier, - STATE(890), 1, + STATE(886), 1, sym_field_declaration_list, - STATE(1228), 1, + STATE(1182), 1, sym_ms_declspec_modifier, - [42655] = 2, + [42616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 5, + ACTIONS(3010), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(3009), 1, - sym_identifier, - STATE(898), 1, - sym_field_declaration_list, - STATE(1229), 1, - sym_ms_declspec_modifier, - [42685] = 6, + [42627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, - anon_sym_COLON, - ACTIONS(2746), 1, + ACTIONS(3012), 5, anon_sym_COMMA, - ACTIONS(3011), 1, - anon_sym_SEMI, - STATE(1156), 1, - aux_sym_field_declaration_repeat1, - STATE(1363), 1, - sym_bitfield_clause, - [42704] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [42638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 5, + ACTIONS(3014), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42715] = 2, + [42649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(3018), 1, + anon_sym_COLON_COLON, + STATE(1297), 1, + sym_argument_list, + ACTIONS(3016), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [42666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 5, + ACTIONS(3020), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42726] = 2, + [42677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 5, + ACTIONS(3022), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [42737] = 5, - ACTIONS(2495), 1, + [42688] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_LF, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3023), 1, - sym_preproc_arg, - STATE(1232), 1, - sym_preproc_params, - [42753] = 5, - ACTIONS(2495), 1, + ACTIONS(3024), 1, + anon_sym_DQUOTE, + ACTIONS(3026), 1, + aux_sym_string_literal_token1, + ACTIONS(3028), 1, + sym_escape_sequence, + STATE(1161), 1, + aux_sym_string_literal_repeat1, + [42704] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, + ACTIONS(3030), 1, anon_sym_LF, - ACTIONS(3027), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN, + ACTIONS(3034), 1, sym_preproc_arg, - STATE(1253), 1, + STATE(1266), 1, sym_preproc_params, - [42769] = 5, - ACTIONS(2495), 1, + [42720] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(3036), 1, anon_sym_DQUOTE, - ACTIONS(3031), 1, + ACTIONS(3038), 1, aux_sym_string_literal_token1, - ACTIONS(3033), 1, + ACTIONS(3040), 1, sym_escape_sequence, - STATE(1154), 1, + STATE(1159), 1, aux_sym_string_literal_repeat1, - [42785] = 5, - ACTIONS(2495), 1, + [42736] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, - anon_sym_DQUOTE, - ACTIONS(3037), 1, - aux_sym_string_literal_token1, - ACTIONS(3039), 1, - sym_escape_sequence, - STATE(1161), 1, - aux_sym_string_literal_repeat1, - [42801] = 5, - ACTIONS(2495), 1, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + STATE(1264), 1, + sym_argument_list, + ACTIONS(3042), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [42750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2948), 1, + anon_sym_LBRACK, + ACTIONS(3044), 1, + anon_sym_RPAREN, + STATE(1144), 1, + sym_parameter_list, + [42766] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3032), 1, anon_sym_LPAREN, - ACTIONS(3041), 1, + ACTIONS(3046), 1, anon_sym_LF, - ACTIONS(3043), 1, + ACTIONS(3048), 1, sym_preproc_arg, - STATE(1250), 1, + STATE(1282), 1, sym_preproc_params, - [42817] = 4, + [42782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(1156), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(3048), 2, - anon_sym_SEMI, - anon_sym_COLON, - [42831] = 5, - ACTIONS(2495), 1, + ACTIONS(3054), 1, + anon_sym_RBRACE, + STATE(1226), 1, + sym_enumerator, + [42798] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3032), 1, anon_sym_LPAREN, - ACTIONS(3050), 1, + ACTIONS(3056), 1, anon_sym_LF, - ACTIONS(3052), 1, + ACTIONS(3058), 1, sym_preproc_arg, - STATE(1252), 1, + STATE(1261), 1, sym_preproc_params, - [42847] = 5, - ACTIONS(2495), 1, + [42814] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3038), 1, aux_sym_string_literal_token1, - ACTIONS(3039), 1, + ACTIONS(3040), 1, sym_escape_sequence, - ACTIONS(3054), 1, + ACTIONS(3060), 1, anon_sym_DQUOTE, - STATE(1161), 1, + STATE(1159), 1, aux_sym_string_literal_repeat1, - [42863] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_LPAREN2, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(3056), 1, - anon_sym_RPAREN, - STATE(1139), 1, - sym_parameter_list, - [42879] = 5, - ACTIONS(2495), 1, + [42830] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_DQUOTE, - ACTIONS(3060), 1, + ACTIONS(3064), 1, aux_sym_string_literal_token1, - ACTIONS(3062), 1, + ACTIONS(3066), 1, sym_escape_sequence, - STATE(1158), 1, + STATE(1157), 1, aux_sym_string_literal_repeat1, - [42895] = 5, - ACTIONS(2495), 1, + [42846] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3068), 1, anon_sym_DQUOTE, - ACTIONS(3066), 1, + ACTIONS(3070), 1, aux_sym_string_literal_token1, - ACTIONS(3069), 1, + ACTIONS(3073), 1, sym_escape_sequence, - STATE(1161), 1, + STATE(1159), 1, aux_sym_string_literal_repeat1, - [42911] = 5, - ACTIONS(2495), 1, + [42862] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3072), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - aux_sym_string_literal_token1, + ACTIONS(3032), 1, + anon_sym_LPAREN, ACTIONS(3076), 1, + anon_sym_LF, + ACTIONS(3078), 1, + sym_preproc_arg, + STATE(1300), 1, + sym_preproc_params, + [42878] = 5, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3038), 1, + aux_sym_string_literal_token1, + ACTIONS(3040), 1, sym_escape_sequence, - STATE(1167), 1, + ACTIONS(3080), 1, + anon_sym_DQUOTE, + STATE(1159), 1, aux_sym_string_literal_repeat1, - [42927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - STATE(1257), 1, - sym_argument_list, - ACTIONS(3078), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [42941] = 5, - ACTIONS(2495), 1, + [42894] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3032), 1, anon_sym_LPAREN, - ACTIONS(3080), 1, - anon_sym_LF, ACTIONS(3082), 1, + anon_sym_LF, + ACTIONS(3084), 1, sym_preproc_arg, - STATE(1284), 1, + STATE(1280), 1, sym_preproc_params, - [42957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - sym_identifier, - ACTIONS(3086), 1, - anon_sym_COMMA, - ACTIONS(3088), 1, - anon_sym_RBRACE, - STATE(1182), 1, - sym_enumerator, - [42973] = 5, - ACTIONS(2495), 1, + [42910] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3032), 1, anon_sym_LPAREN, - ACTIONS(3090), 1, + ACTIONS(3086), 1, anon_sym_LF, - ACTIONS(3092), 1, + ACTIONS(3088), 1, sym_preproc_arg, - STATE(1278), 1, + STATE(1295), 1, sym_preproc_params, - [42989] = 5, - ACTIONS(2495), 1, + [42926] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3090), 1, + anon_sym_DQUOTE, + ACTIONS(3092), 1, aux_sym_string_literal_token1, - ACTIONS(3039), 1, - sym_escape_sequence, ACTIONS(3094), 1, - anon_sym_DQUOTE, - STATE(1161), 1, + sym_escape_sequence, + STATE(1151), 1, aux_sym_string_literal_repeat1, - [43005] = 5, - ACTIONS(2495), 1, + [42942] = 5, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3032), 1, anon_sym_LPAREN, ACTIONS(3096), 1, anon_sym_LF, @@ -81084,1982 +81150,2047 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(1281), 1, sym_preproc_params, - [43021] = 2, + [42958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(3100), 1, + anon_sym_SEMI, + STATE(1199), 1, + aux_sym_declaration_repeat1, + [42971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 3, + ACTIONS(3102), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [43030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1494), 1, - anon_sym_RBRACE, - ACTIONS(3102), 1, - anon_sym_COMMA, - STATE(1192), 1, - aux_sym_initializer_list_repeat1, - [43043] = 4, + [42980] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3050), 1, + sym_identifier, ACTIONS(3104), 1, - anon_sym_COMMA, - ACTIONS(3107), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_generic_expression_repeat1, - [43056] = 4, + anon_sym_RBRACE, + STATE(1249), 1, + sym_enumerator, + [42993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 1, - anon_sym_COMMA, - ACTIONS(3109), 1, - anon_sym_RPAREN, - STATE(1226), 1, - aux_sym_argument_list_repeat1, - [43069] = 4, + ACTIONS(3106), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [43002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_preproc_argument_list_repeat1, - [43082] = 4, + ACTIONS(3111), 1, + anon_sym_RBRACK_RBRACK, + STATE(1170), 1, + aux_sym_attribute_declaration_repeat1, + [43015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3115), 1, - anon_sym_RPAREN, - STATE(1222), 1, - aux_sym_preproc_params_repeat1, - [43095] = 4, + ACTIONS(3113), 1, + anon_sym_SEMI, + STATE(1204), 1, + aux_sym_type_definition_repeat2, + [43028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3117), 1, + ACTIONS(3115), 1, anon_sym_SEMI, - STATE(1199), 1, + STATE(1204), 1, aux_sym_type_definition_repeat2, - [43108] = 4, + [43041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, - anon_sym_LBRACE, + ACTIONS(3117), 1, + anon_sym_COMMA, ACTIONS(3119), 1, - sym_identifier, - STATE(900), 1, - sym_enumerator_list, - [43121] = 4, + anon_sym_RBRACK_RBRACK, + STATE(1187), 1, + aux_sym_attribute_declaration_repeat1, + [43054] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, ACTIONS(3121), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1192), 1, aux_sym_declaration_repeat1, - [43134] = 4, + [43067] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2812), 1, + anon_sym_COMMA, ACTIONS(3123), 1, + anon_sym_SEMI, + STATE(1204), 1, + aux_sym_type_definition_repeat2, + [43080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3117), 1, anon_sym_COMMA, ACTIONS(3125), 1, - anon_sym_RPAREN, - STATE(1180), 1, - aux_sym_parameter_list_repeat1, - [43147] = 4, + anon_sym_RBRACK_RBRACK, + STATE(1177), 1, + aux_sym_attribute_declaration_repeat1, + [43093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - ACTIONS(3129), 1, + ACTIONS(3127), 1, anon_sym_RBRACK_RBRACK, - STATE(1219), 1, + STATE(1170), 1, aux_sym_attribute_declaration_repeat1, - [43160] = 4, + [43106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, + anon_sym_LBRACE, + ACTIONS(3129), 1, + sym_identifier, + STATE(884), 1, + sym_enumerator_list, + [43119] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3131), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3133), 1, anon_sym_RPAREN, STATE(1180), 1, aux_sym_parameter_list_repeat1, - [43173] = 3, + [43132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 1, - anon_sym_EQ, - ACTIONS(3136), 2, + ACTIONS(3131), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [43184] = 4, + ACTIONS(3135), 1, + anon_sym_RPAREN, + STATE(1228), 1, + aux_sym_parameter_list_repeat1, + [43145] = 4, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3137), 1, + anon_sym_LF, + STATE(984), 1, + sym_preproc_argument_list, + [43158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, - anon_sym_COMMA, - ACTIONS(3142), 1, - anon_sym_RBRACE, - STATE(1223), 1, - aux_sym_enumerator_list_repeat1, - [43197] = 4, + ACTIONS(2335), 1, + anon_sym_LBRACE, + ACTIONS(3139), 1, + sym_identifier, + STATE(888), 1, + sym_field_declaration_list, + [43171] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3144), 1, + ACTIONS(3141), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1199), 1, aux_sym_declaration_repeat1, - [43210] = 4, - ACTIONS(2493), 1, - anon_sym_LPAREN2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3146), 1, - anon_sym_LF, - STATE(988), 1, - sym_preproc_argument_list, - [43223] = 4, + [43184] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3148), 1, + ACTIONS(3143), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1199), 1, aux_sym_declaration_repeat1, - [43236] = 4, + [43197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - ACTIONS(3150), 1, + ACTIONS(3145), 1, anon_sym_RBRACK_RBRACK, - STATE(1203), 1, + STATE(1205), 1, aux_sym_attribute_declaration_repeat1, - [43249] = 4, + [43210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 1, + ACTIONS(3149), 1, + anon_sym_EQ, + ACTIONS(3147), 2, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RPAREN, - STATE(1226), 1, - aux_sym_argument_list_repeat1, - [43262] = 4, + anon_sym_RBRACE, + [43221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - ACTIONS(3154), 1, - anon_sym_SEMI, - STATE(1198), 1, - aux_sym_declaration_repeat1, - [43275] = 4, + ACTIONS(3151), 1, + anon_sym_RBRACK_RBRACK, + STATE(1170), 1, + aux_sym_attribute_declaration_repeat1, + [43234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - anon_sym_COMMA, - ACTIONS(3156), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_preproc_argument_list_repeat1, - [43288] = 4, + ACTIONS(2335), 1, + anon_sym_LBRACE, + ACTIONS(3153), 1, + sym_identifier, + STATE(885), 1, + sym_field_declaration_list, + [43247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3158), 1, + ACTIONS(3155), 1, anon_sym_SEMI, STATE(1199), 1, - aux_sym_type_definition_repeat2, - [43301] = 4, + aux_sym_declaration_repeat1, + [43260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RPAREN, - STATE(1174), 1, - aux_sym_preproc_params_repeat1, - [43314] = 4, + ACTIONS(3157), 1, + anon_sym_SEMI, + STATE(1183), 1, + aux_sym_declaration_repeat1, + [43273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 1, - anon_sym_RBRACE, - ACTIONS(3162), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - STATE(1192), 1, - aux_sym_initializer_list_repeat1, - [43327] = 4, + ACTIONS(3159), 1, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2122), 1, - anon_sym_RBRACE, - STATE(1170), 1, - aux_sym_initializer_list_repeat1, - [43340] = 4, + ACTIONS(3161), 1, + anon_sym_SEMI, + STATE(1199), 1, + aux_sym_declaration_repeat1, + [43299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(3163), 1, anon_sym_COMMA, ACTIONS(3165), 1, - anon_sym_SEMI, - STATE(1199), 1, - aux_sym_type_definition_repeat2, - [43353] = 4, + anon_sym_RPAREN, + STATE(1217), 1, + aux_sym_preproc_params_repeat1, + [43312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2461), 1, anon_sym_COMMA, ACTIONS(3167), 1, - anon_sym_SEMI, - STATE(1208), 1, - aux_sym_declaration_repeat1, - [43366] = 4, + anon_sym_RPAREN, + STATE(1215), 1, + aux_sym_preproc_argument_list_repeat1, + [43325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2089), 1, anon_sym_COMMA, ACTIONS(3169), 1, - anon_sym_RBRACK_RBRACK, - STATE(1219), 1, - aux_sym_attribute_declaration_repeat1, - [43379] = 4, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_argument_list_repeat1, + [43338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2742), 1, anon_sym_COMMA, ACTIONS(3171), 1, anon_sym_SEMI, - STATE(1199), 1, - aux_sym_type_definition_repeat2, - [43392] = 4, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3176), 1, + ACTIONS(3173), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1210), 1, aux_sym_declaration_repeat1, - [43405] = 4, + [43364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 1, + ACTIONS(3175), 1, anon_sym_COMMA, - ACTIONS(3181), 1, + ACTIONS(3178), 1, anon_sym_SEMI, - STATE(1199), 1, - aux_sym_type_definition_repeat2, - [43418] = 4, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(3180), 1, anon_sym_COMMA, ACTIONS(3183), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_generic_expression_repeat1, - [43431] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + STATE(1199), 1, + aux_sym_declaration_repeat1, + [43390] = 4, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_COMMA, ACTIONS(3185), 1, - anon_sym_RPAREN, - STATE(1178), 1, - aux_sym_parameter_list_repeat1, - [43444] = 4, + anon_sym_LF, + STATE(984), 1, + sym_preproc_argument_list, + [43403] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, ACTIONS(3187), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1166), 1, aux_sym_declaration_repeat1, - [43457] = 4, + [43416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2742), 1, anon_sym_COMMA, ACTIONS(3189), 1, - anon_sym_RBRACK_RBRACK, - STATE(1219), 1, - aux_sym_attribute_declaration_repeat1, - [43470] = 4, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43429] = 4, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_LF, + STATE(984), 1, + sym_preproc_argument_list, + [43442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(3193), 1, anon_sym_COMMA, - ACTIONS(3191), 1, + ACTIONS(3196), 1, anon_sym_SEMI, - STATE(1198), 1, - aux_sym_declaration_repeat1, - [43483] = 4, + STATE(1204), 1, + aux_sym_type_definition_repeat2, + [43455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - ACTIONS(3193), 1, + ACTIONS(3198), 1, + anon_sym_RBRACK_RBRACK, + STATE(1170), 1, + aux_sym_attribute_declaration_repeat1, + [43468] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(3200), 1, anon_sym_SEMI, - STATE(1199), 1, + STATE(1204), 1, aux_sym_type_definition_repeat2, - [43496] = 4, + [43481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - sym_identifier, - ACTIONS(3195), 1, + ACTIONS(3202), 1, + anon_sym_COMMA, + ACTIONS(3205), 1, + anon_sym_RPAREN, + STATE(1207), 1, + aux_sym_generic_expression_repeat1, + [43494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, anon_sym_RBRACE, - STATE(1256), 1, - sym_enumerator, - [43509] = 4, + ACTIONS(3207), 1, + anon_sym_COMMA, + STATE(1208), 1, + aux_sym_initializer_list_repeat1, + [43507] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3197), 1, + ACTIONS(3210), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1199), 1, aux_sym_declaration_repeat1, - [43522] = 4, + [43520] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3199), 1, + ACTIONS(3212), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1199), 1, aux_sym_declaration_repeat1, - [43535] = 4, - ACTIONS(2493), 1, - anon_sym_LPAREN2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3201), 1, - anon_sym_LF, - STATE(988), 1, - sym_preproc_argument_list, - [43548] = 4, + [43533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(2215), 1, + anon_sym_RPAREN, + ACTIONS(3214), 1, anon_sym_COMMA, - ACTIONS(3206), 1, - anon_sym_RBRACE, - STATE(1210), 1, - aux_sym_enumerator_list_repeat1, - [43561] = 4, + STATE(1211), 1, + aux_sym_argument_list_repeat1, + [43546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(3219), 1, + anon_sym_RPAREN, + ACTIONS(3217), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [43557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3208), 1, + ACTIONS(3221), 1, anon_sym_SEMI, STATE(1202), 1, - aux_sym_declaration_repeat1, - [43574] = 3, + aux_sym_field_declaration_repeat1, + [43570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, + anon_sym_RBRACE, + STATE(1237), 1, + aux_sym_initializer_list_repeat1, + [43583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, anon_sym_RPAREN, - ACTIONS(3210), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [43585] = 4, + ACTIONS(3223), 1, + anon_sym_COMMA, + STATE(1215), 1, + aux_sym_preproc_argument_list_repeat1, + [43596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3214), 1, + ACTIONS(3226), 1, anon_sym_SEMI, - STATE(1199), 1, + STATE(1204), 1, aux_sym_type_definition_repeat2, - [43598] = 4, + [43609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(3228), 1, anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_SEMI, - STATE(1199), 1, - aux_sym_type_definition_repeat2, - [43611] = 4, + ACTIONS(3231), 1, + anon_sym_RPAREN, + STATE(1217), 1, + aux_sym_preproc_params_repeat1, + [43622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3218), 1, + ACTIONS(3233), 1, anon_sym_SEMI, - STATE(1188), 1, - aux_sym_declaration_repeat1, - [43624] = 4, - ACTIONS(2493), 1, - anon_sym_LPAREN2, - ACTIONS(2495), 1, + STATE(1204), 1, + aux_sym_type_definition_repeat2, + [43635] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3220), 1, - anon_sym_LF, - STATE(988), 1, - sym_preproc_argument_list, - [43637] = 4, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3235), 1, + anon_sym_RBRACE, + STATE(1249), 1, + sym_enumerator, + [43648] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(3237), 1, anon_sym_SEMI, - STATE(1177), 1, + STATE(1199), 1, aux_sym_declaration_repeat1, - [43650] = 4, - ACTIONS(2493), 1, - anon_sym_LPAREN2, - ACTIONS(2495), 1, + [43661] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 1, - anon_sym_LF, - STATE(988), 1, - sym_preproc_argument_list, - [43663] = 4, + ACTIONS(2341), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + sym_identifier, + STATE(884), 1, + sym_enumerator_list, + [43674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3229), 1, - anon_sym_RBRACK_RBRACK, - STATE(1219), 1, - aux_sym_attribute_declaration_repeat1, - [43676] = 4, + ACTIONS(3241), 1, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - sym_identifier, - ACTIONS(3231), 1, + ACTIONS(3243), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, anon_sym_RBRACE, - STATE(1256), 1, - sym_enumerator, - [43689] = 4, + STATE(1223), 1, + aux_sym_enumerator_list_repeat1, + [43700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, - anon_sym_RPAREN, - ACTIONS(3233), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - STATE(1221), 1, - aux_sym_preproc_argument_list_repeat1, - [43702] = 4, + ACTIONS(3248), 1, + anon_sym_SEMI, + STATE(1196), 1, + aux_sym_field_declaration_repeat1, + [43713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3239), 1, - anon_sym_RPAREN, - STATE(1222), 1, - aux_sym_preproc_params_repeat1, - [43715] = 4, + ACTIONS(3250), 1, + anon_sym_SEMI, + STATE(1204), 1, + aux_sym_type_definition_repeat2, + [43726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 1, - anon_sym_RBRACE, - ACTIONS(3241), 1, + ACTIONS(3252), 1, anon_sym_COMMA, - STATE(1210), 1, + ACTIONS(3254), 1, + anon_sym_RBRACE, + STATE(1233), 1, aux_sym_enumerator_list_repeat1, - [43728] = 4, + [43739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - ACTIONS(3243), 1, + ACTIONS(3256), 1, anon_sym_SEMI, - STATE(1199), 1, + STATE(1204), 1, aux_sym_type_definition_repeat2, - [43741] = 4, + [43752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3258), 1, anon_sym_COMMA, - ACTIONS(3245), 1, - anon_sym_RBRACK_RBRACK, - STATE(1196), 1, - aux_sym_attribute_declaration_repeat1, - [43754] = 4, + ACTIONS(3261), 1, + anon_sym_RPAREN, + STATE(1228), 1, + aux_sym_parameter_list_repeat1, + [43765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_RPAREN, - ACTIONS(3247), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - STATE(1226), 1, - aux_sym_argument_list_repeat1, - [43767] = 4, + ACTIONS(3263), 1, + anon_sym_SEMI, + STATE(1231), 1, + aux_sym_field_declaration_repeat1, + [43778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(3250), 1, - anon_sym_RBRACK_RBRACK, - STATE(1179), 1, - aux_sym_attribute_declaration_repeat1, - [43780] = 4, + ACTIONS(3265), 1, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - sym_identifier, - STATE(904), 1, - sym_field_declaration_list, - [43793] = 4, + ACTIONS(2742), 1, + anon_sym_COMMA, + ACTIONS(3267), 1, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_field_declaration_repeat1, + [43804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(3254), 1, - sym_identifier, - STATE(903), 1, - sym_field_declaration_list, - [43806] = 2, + ACTIONS(2119), 1, + anon_sym_COMMA, + ACTIONS(3269), 1, + anon_sym_RPAREN, + STATE(1207), 1, + aux_sym_generic_expression_repeat1, + [43817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [43815] = 3, - ACTIONS(2495), 1, + ACTIONS(3104), 1, + anon_sym_RBRACE, + ACTIONS(3271), 1, + anon_sym_COMMA, + STATE(1223), 1, + aux_sym_enumerator_list_repeat1, + [43830] = 4, + ACTIONS(2511), 1, + anon_sym_LPAREN2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3273), 1, anon_sym_LF, - ACTIONS(3260), 1, - sym_preproc_arg, - [43825] = 3, - ACTIONS(2495), 1, + STATE(984), 1, + sym_preproc_argument_list, + [43843] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_LF, - ACTIONS(3264), 1, - sym_preproc_arg, - [43835] = 3, + ACTIONS(2461), 1, + anon_sym_COMMA, + ACTIONS(3275), 1, + anon_sym_RPAREN, + STATE(1215), 1, + aux_sym_preproc_argument_list_repeat1, + [43856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(329), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym_compound_statement, - [43845] = 2, + ACTIONS(3163), 1, + anon_sym_COMMA, + ACTIONS(3277), 1, + anon_sym_RPAREN, + STATE(1193), 1, + aux_sym_preproc_params_repeat1, + [43869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 2, + ACTIONS(1509), 1, + anon_sym_RBRACE, + ACTIONS(3279), 1, anon_sym_COMMA, - anon_sym_SEMI, - [43853] = 3, + STATE(1208), 1, + aux_sym_initializer_list_repeat1, + [43882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - STATE(1411), 1, - sym_argument_list, - [43863] = 3, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3281), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_argument_list_repeat1, + [43895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3283), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(3268), 1, + [43903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, anon_sym_LPAREN2, - [43873] = 3, + STATE(1267), 1, + sym_parenthesized_expression, + [43913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(232), 1, - sym_compound_statement, - [43883] = 2, + ACTIONS(3287), 1, + anon_sym_LPAREN2, + STATE(293), 1, + sym_parenthesized_expression, + [43923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 2, + ACTIONS(2822), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [43891] = 3, + anon_sym_SEMI, + [43931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + sym_identifier, + ACTIONS(3291), 1, + anon_sym_LPAREN2, + [43941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - STATE(1296), 1, + STATE(1461), 1, sym_parenthesized_expression, - [43901] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3272), 2, - anon_sym_LF, - sym_preproc_arg, - [43909] = 2, + [43951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3239), 2, + ACTIONS(3261), 2, anon_sym_COMMA, anon_sym_RPAREN, - [43917] = 3, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3274), 1, - anon_sym_LF, - ACTIONS(3276), 1, - sym_preproc_arg, - [43927] = 3, + [43959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3050), 1, sym_identifier, - STATE(1256), 1, + STATE(1249), 1, sym_enumerator, - [43937] = 3, - ACTIONS(3), 1, + [43969] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LPAREN2, - STATE(205), 1, - sym_parenthesized_expression, - [43947] = 3, + ACTIONS(3293), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [43977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - anon_sym_LPAREN2, - STATE(135), 1, - sym_parenthesized_expression, - [43957] = 2, + ACTIONS(2095), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(3246), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [43965] = 3, + anon_sym_RBRACE, + [43993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_LPAREN2, - STATE(1367), 1, - sym_argument_list, - [43975] = 3, + ACTIONS(2144), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [44001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - STATE(1249), 1, + STATE(1311), 1, sym_parenthesized_expression, - [43985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_LBRACE, - STATE(170), 1, - sym_compound_statement, - [43995] = 3, - ACTIONS(2495), 1, + [44011] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3282), 1, + ACTIONS(3297), 1, sym_preproc_arg, - [44005] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3284), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [44013] = 3, - ACTIONS(2495), 1, + [44021] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(3299), 1, anon_sym_LF, - ACTIONS(3288), 1, + ACTIONS(3301), 1, sym_preproc_arg, - [44023] = 3, - ACTIONS(2495), 1, + [44031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(444), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_compound_statement, + [44041] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3303), 2, anon_sym_LF, - ACTIONS(3292), 1, sym_preproc_arg, - [44033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3294), 1, - sym_identifier, - ACTIONS(3296), 1, - anon_sym_LPAREN2, - [44043] = 3, + [44049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3287), 1, anon_sym_LPAREN2, - STATE(1358), 1, + STATE(259), 1, sym_parenthesized_expression, - [44053] = 2, + [44059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 2, + ACTIONS(3231), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [44061] = 2, + anon_sym_RPAREN, + [44067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3305), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [44069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - anon_sym_LPAREN2, - STATE(284), 1, - sym_parenthesized_expression, - [44079] = 3, + anon_sym_SEMI, + [44075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3287), 1, anon_sym_LPAREN2, - STATE(1485), 1, + STATE(234), 1, sym_parenthesized_expression, - [44089] = 3, + [44085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - STATE(282), 1, + STATE(1279), 1, sym_parenthesized_expression, - [44099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3300), 1, - sym_identifier, - STATE(1225), 1, - sym_attribute, - [44109] = 2, - ACTIONS(2495), 1, + [44095] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3302), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [44117] = 3, + ACTIONS(3307), 1, + anon_sym_LF, + ACTIONS(3309), 1, + sym_preproc_arg, + [44105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3287), 1, anon_sym_LPAREN2, - STATE(176), 1, + STATE(236), 1, sym_parenthesized_expression, - [44127] = 2, + [44115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 2, + ACTIONS(2148), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [44135] = 2, + anon_sym_RBRACE, + [44123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 2, + ACTIONS(3311), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [44143] = 3, + anon_sym_RBRACK_RBRACK, + [44131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - STATE(1237), 1, + STATE(1254), 1, sym_parenthesized_expression, - [44153] = 2, - ACTIONS(2495), 1, + [44141] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3306), 2, + ACTIONS(3313), 1, anon_sym_LF, + ACTIONS(3315), 1, sym_preproc_arg, - [44161] = 2, + [44151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44169] = 2, + ACTIONS(329), 1, + anon_sym_LBRACE, + STATE(245), 1, + sym_compound_statement, + [44161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44177] = 3, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + STATE(1352), 1, + sym_argument_list, + [44171] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3317), 2, + anon_sym_LF, + sym_preproc_arg, + [44179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3287), 1, anon_sym_LPAREN2, - STATE(173), 1, + STATE(296), 1, sym_parenthesized_expression, - [44187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(119), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym_compound_statement, - [44197] = 3, + [44189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3287), 1, anon_sym_LPAREN2, - STATE(1352), 1, + STATE(227), 1, sym_parenthesized_expression, - [44207] = 3, + [44199] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3319), 2, + anon_sym_LF, + sym_preproc_arg, + [44207] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3321), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [44215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3323), 1, sym_identifier, - STATE(1246), 1, + STATE(1173), 1, sym_attribute, - [44217] = 3, + [44225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3325), 1, sym_identifier, - STATE(1186), 1, - sym_attribute, - [44227] = 3, + ACTIONS(3327), 1, + anon_sym_LPAREN2, + [44235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - STATE(229), 1, - sym_parenthesized_expression, - [44237] = 3, - ACTIONS(2495), 1, + STATE(1323), 1, + sym_argument_list, + [44253] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3329), 1, anon_sym_LF, - ACTIONS(3310), 1, + ACTIONS(3331), 1, sym_preproc_arg, - [44247] = 3, - ACTIONS(2495), 1, + [44263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_compound_statement, + [44273] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3312), 1, + ACTIONS(3333), 1, anon_sym_LF, - ACTIONS(3314), 1, + ACTIONS(3335), 1, sym_preproc_arg, - [44257] = 3, - ACTIONS(2495), 1, + [44283] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(3337), 1, anon_sym_LF, - ACTIONS(3318), 1, + ACTIONS(3339), 1, sym_preproc_arg, - [44267] = 3, - ACTIONS(2495), 1, + [44293] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3320), 1, + ACTIONS(3341), 1, anon_sym_LF, - ACTIONS(3322), 1, + ACTIONS(3343), 1, sym_preproc_arg, - [44277] = 3, + [44303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - STATE(1271), 1, + STATE(1440), 1, sym_parenthesized_expression, - [44287] = 3, - ACTIONS(2495), 1, + [44313] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - anon_sym_LF, - ACTIONS(3326), 1, - sym_preproc_arg, - [44297] = 3, - ACTIONS(2495), 1, + ACTIONS(119), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_compound_statement, + [44323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3345), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44331] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3328), 1, + ACTIONS(3347), 1, anon_sym_LF, - ACTIONS(3330), 1, + ACTIONS(3349), 1, sym_preproc_arg, - [44307] = 3, + [44341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3323), 1, sym_identifier, - STATE(1227), 1, + STATE(1185), 1, sym_attribute, - [44317] = 3, - ACTIONS(2495), 1, + [44351] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3332), 1, - anon_sym_LF, - ACTIONS(3334), 1, - sym_preproc_arg, - [44327] = 3, + ACTIONS(3285), 1, + anon_sym_LPAREN2, + STATE(1284), 1, + sym_parenthesized_expression, + [44361] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3351), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [44369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - STATE(234), 1, + STATE(1379), 1, sym_parenthesized_expression, - [44337] = 2, - ACTIONS(2495), 1, + [44379] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3336), 2, + ACTIONS(3353), 1, anon_sym_LF, + ACTIONS(3355), 1, sym_preproc_arg, - [44345] = 2, + [44389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [44353] = 2, + ACTIONS(3287), 1, + anon_sym_LPAREN2, + STATE(205), 1, + sym_parenthesized_expression, + [44399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [44361] = 3, + ACTIONS(3323), 1, + sym_identifier, + STATE(1301), 1, + sym_attribute, + [44409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3287), 1, anon_sym_LPAREN2, - STATE(1233), 1, + STATE(199), 1, sym_parenthesized_expression, - [44371] = 2, + [44419] = 3, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_LF, + ACTIONS(3359), 1, + sym_preproc_arg, + [44429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3323), 1, + sym_identifier, + STATE(1176), 1, + sym_attribute, + [44439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 2, + ACTIONS(3361), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [44379] = 2, - ACTIONS(2495), 1, + [44447] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3342), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [44387] = 3, - ACTIONS(2495), 1, + ACTIONS(3363), 1, + anon_sym_LF, + ACTIONS(3365), 1, + sym_preproc_arg, + [44457] = 3, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_LF, + ACTIONS(3369), 1, + sym_preproc_arg, + [44467] = 3, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3344), 1, + ACTIONS(3371), 1, anon_sym_LF, - ACTIONS(3346), 1, + ACTIONS(3373), 1, sym_preproc_arg, - [44397] = 2, + [44477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - anon_sym_RPAREN, - [44404] = 2, + ACTIONS(3111), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [44485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_SEMI, - [44411] = 2, + ACTIONS(2249), 1, + anon_sym_RPAREN, + [44492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, - anon_sym_SEMI, - [44418] = 2, + ACTIONS(3375), 1, + aux_sym_preproc_if_token2, + [44499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_SEMI, - [44425] = 2, + ACTIONS(2203), 1, + anon_sym_RPAREN, + [44506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, + ACTIONS(2199), 1, anon_sym_RPAREN, - [44432] = 2, - ACTIONS(2495), 1, + [44513] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3377), 1, anon_sym_LF, - [44439] = 2, + [44520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3379), 1, aux_sym_preproc_if_token2, - [44446] = 2, + [44527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, - anon_sym_RPAREN, - [44453] = 2, + ACTIONS(2217), 1, + anon_sym_SEMI, + [44534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 1, - sym_identifier, - [44460] = 2, + ACTIONS(3381), 1, + aux_sym_preproc_if_token2, + [44541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 1, - anon_sym_RPAREN, - [44467] = 2, + ACTIONS(3383), 1, + sym_identifier, + [44548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_RBRACE, - [44474] = 2, + ACTIONS(3385), 1, + anon_sym_SEMI, + [44555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_preproc_if_token2, - [44481] = 2, + ACTIONS(3387), 1, + anon_sym_RPAREN, + [44562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, - anon_sym_RPAREN, - [44488] = 2, + ACTIONS(3389), 1, + sym_primitive_type, + [44569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3391), 1, aux_sym_preproc_if_token2, - [44495] = 2, + [44576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2225), 1, anon_sym_RPAREN, - [44502] = 2, + [44583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_SEMI, - [44509] = 2, + ACTIONS(3254), 1, + anon_sym_RBRACE, + [44590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, - [44516] = 2, + [44597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 1, + ACTIONS(3393), 1, anon_sym_RPAREN, - [44523] = 2, + [44604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, - [44530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2215), 1, - anon_sym_SEMI, - [44537] = 2, + [44611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - [44544] = 2, + [44618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, - anon_sym_SEMI, - [44551] = 2, + ACTIONS(3395), 1, + sym_identifier, + [44625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 1, - aux_sym_preproc_if_token2, - [44558] = 2, + ACTIONS(2154), 1, + anon_sym_RPAREN, + [44632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(3397), 1, anon_sym_RPAREN, - [44565] = 2, + [44639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3368), 1, - aux_sym_preproc_if_token2, - [44572] = 2, + ACTIONS(3399), 1, + anon_sym_COLON, + [44646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3370), 1, - aux_sym_preproc_if_token2, - [44579] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_LF, - [44586] = 2, - ACTIONS(2495), 1, + ACTIONS(2150), 1, + anon_sym_RPAREN, + [44653] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3374), 1, + ACTIONS(3401), 1, anon_sym_LF, - [44593] = 2, - ACTIONS(2495), 1, + [44660] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3376), 1, + ACTIONS(3403), 1, anon_sym_LF, - [44600] = 2, - ACTIONS(2495), 1, + [44667] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3405), 1, anon_sym_LF, - [44607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2257), 1, - anon_sym_RPAREN, - [44614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_COLON, - [44621] = 2, - ACTIONS(2495), 1, + [44674] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3407), 1, anon_sym_LF, - [44628] = 2, - ACTIONS(2495), 1, + [44681] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3409), 1, anon_sym_LF, - [44635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - aux_sym_preproc_if_token2, - [44642] = 2, - ACTIONS(2495), 1, + [44688] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3388), 1, + ACTIONS(3411), 1, anon_sym_LF, - [44649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 1, - aux_sym_preproc_if_token2, - [44656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, - anon_sym_SEMI, - [44663] = 2, - ACTIONS(2495), 1, + [44695] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3413), 1, anon_sym_LF, - [44670] = 2, - ACTIONS(2495), 1, + [44702] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3394), 1, + ACTIONS(3415), 1, anon_sym_LF, - [44677] = 2, + [44709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, - anon_sym_SEMI, - [44684] = 2, - ACTIONS(2495), 1, + ACTIONS(3417), 1, + aux_sym_preproc_if_token2, + [44716] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3398), 1, + ACTIONS(3419), 1, anon_sym_LF, - [44691] = 2, + [44723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3400), 1, + ACTIONS(2132), 1, anon_sym_SEMI, - [44698] = 2, + [44730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 1, + ACTIONS(3421), 1, sym_identifier, - [44705] = 2, + [44737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, + ACTIONS(3423), 1, sym_identifier, - [44712] = 2, - ACTIONS(3), 1, + [44744] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3406), 1, - anon_sym_COLON, - [44719] = 2, + ACTIONS(3425), 1, + anon_sym_LF, + [44751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, - anon_sym_RPAREN, - [44726] = 2, + ACTIONS(3427), 1, + anon_sym_SEMI, + [44758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_SEMI, - [44733] = 2, - ACTIONS(2495), 1, + [44765] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3410), 1, - anon_sym_LF, - [44740] = 2, + ACTIONS(3429), 1, + anon_sym_RPAREN, + [44772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3412), 1, - aux_sym_preproc_if_token2, - [44747] = 2, + ACTIONS(3431), 1, + anon_sym_STAR, + [44779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(3433), 1, sym_identifier, - [44754] = 2, + [44786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_SEMI, - [44761] = 2, + ACTIONS(3435), 1, + anon_sym_COMMA, + [44793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - aux_sym_preproc_if_token2, - [44768] = 2, - ACTIONS(2495), 1, + ACTIONS(3437), 1, + anon_sym_RPAREN, + [44800] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3224), 1, + ACTIONS(3439), 1, anon_sym_LF, - [44775] = 2, - ACTIONS(3), 1, + [44807] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3418), 1, - aux_sym_preproc_if_token2, - [44782] = 2, + ACTIONS(3191), 1, + anon_sym_LF, + [44814] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2235), 1, - anon_sym_RPAREN, - [44789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 1, - sym_identifier, - [44796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_RPAREN, - [44803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2203), 1, anon_sym_SEMI, - [44810] = 2, + [44821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3441), 1, anon_sym_SEMI, - [44817] = 2, + [44828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3443), 1, anon_sym_SEMI, - [44824] = 2, + [44835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3445), 1, anon_sym_STAR, - [44831] = 2, + [44842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, - anon_sym_SEMI, - [44838] = 2, + ACTIONS(3447), 1, + anon_sym_COLON, + [44849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_RPAREN, + [44856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3449), 1, aux_sym_preproc_if_token2, - [44845] = 2, + [44863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3451), 1, aux_sym_preproc_if_token2, - [44852] = 2, + [44870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_SEMI, - [44859] = 2, + ACTIONS(3453), 1, + aux_sym_preproc_if_token2, + [44877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_SEMI, - [44866] = 2, + ACTIONS(2243), 1, + anon_sym_RPAREN, + [44884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3455), 1, aux_sym_preproc_if_token2, - [44873] = 2, + [44891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - aux_sym_preproc_if_token2, - [44880] = 2, + ACTIONS(2245), 1, + anon_sym_RPAREN, + [44898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - aux_sym_preproc_if_token2, - [44887] = 2, + ACTIONS(2247), 1, + anon_sym_RPAREN, + [44905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - anon_sym_SEMI, - [44894] = 2, + ACTIONS(3457), 1, + anon_sym_RPAREN, + [44912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3459), 1, aux_sym_preproc_if_token2, - [44901] = 2, - ACTIONS(2495), 1, + [44919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_RPAREN, + [44926] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3461), 1, anon_sym_LF, - [44908] = 2, + [44933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2229), 1, + anon_sym_RPAREN, + [44940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, + ACTIONS(3463), 1, sym_identifier, - [44915] = 2, + [44947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_STAR, - [44922] = 2, + ACTIONS(3465), 1, + sym_identifier, + [44954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3467), 1, anon_sym_RPAREN, - [44929] = 2, + [44961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3469), 1, sym_identifier, - [44936] = 2, + [44968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, - anon_sym_RPAREN, - [44943] = 2, + ACTIONS(3471), 1, + aux_sym_preproc_if_token2, + [44975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, - anon_sym_RPAREN, - [44950] = 2, + ACTIONS(3473), 1, + aux_sym_preproc_if_token2, + [44982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, - anon_sym_RPAREN, - [44957] = 2, + ACTIONS(3475), 1, + aux_sym_preproc_if_token2, + [44989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3477), 1, anon_sym_RPAREN, - [44964] = 2, + [44996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, - aux_sym_preproc_if_token2, - [44971] = 2, + ACTIONS(3479), 1, + anon_sym_SEMI, + [45003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3481), 1, aux_sym_preproc_if_token2, - [44978] = 2, + [45010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(3483), 1, aux_sym_preproc_if_token2, - [44985] = 2, + [45017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, + ACTIONS(2172), 1, anon_sym_SEMI, - [44992] = 2, + [45024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 1, - aux_sym_preproc_if_token2, - [44999] = 2, + ACTIONS(3485), 1, + anon_sym_SEMI, + [45031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, + ACTIONS(2174), 1, anon_sym_SEMI, - [45006] = 2, + [45038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, - anon_sym_RPAREN, - [45013] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_LF, - [45020] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3474), 1, - anon_sym_LF, - [45027] = 2, + ACTIONS(3487), 1, + sym_identifier, + [45045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, + ACTIONS(3489), 1, anon_sym_SEMI, - [45034] = 2, + [45052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, - anon_sym_SQUOTE, - [45041] = 2, + ACTIONS(3491), 1, + aux_sym_preproc_if_token2, + [45059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(2178), 1, anon_sym_SEMI, - [45048] = 2, - ACTIONS(3), 1, + [45066] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(2151), 1, - anon_sym_SEMI, - [45055] = 2, + ACTIONS(3493), 1, + anon_sym_LF, + [45073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3480), 1, + ACTIONS(3495), 1, aux_sym_preproc_if_token2, - [45062] = 2, - ACTIONS(3), 1, + [45080] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3482), 1, - sym_identifier, - [45069] = 2, + ACTIONS(3497), 1, + anon_sym_LF, + [45087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, - anon_sym_RPAREN, - [45076] = 2, + ACTIONS(3499), 1, + anon_sym_SQUOTE, + [45094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 1, - anon_sym_RPAREN, - [45083] = 2, - ACTIONS(2495), 1, + ACTIONS(2251), 1, + anon_sym_SEMI, + [45101] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3488), 1, + ACTIONS(3185), 1, anon_sym_LF, - [45090] = 2, + [45108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_COMMA, - [45097] = 2, + ACTIONS(3501), 1, + aux_sym_preproc_if_token2, + [45115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3492), 1, - anon_sym_RPAREN, - [45104] = 2, + ACTIONS(3503), 1, + anon_sym_STAR, + [45122] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3505), 1, + anon_sym_LF, + [45129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 1, - anon_sym_RPAREN, - [45111] = 2, + ACTIONS(3507), 1, + anon_sym_COLON, + [45136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2162), 1, anon_sym_RPAREN, - [45118] = 2, + [45143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - sym_identifier, - [45125] = 2, - ACTIONS(2495), 1, + ACTIONS(3509), 1, + anon_sym_SQUOTE, + [45150] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_LF, - [45132] = 2, + ACTIONS(3511), 1, + anon_sym_SQUOTE, + [45157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 1, + ACTIONS(3513), 1, anon_sym_SEMI, - [45139] = 2, + [45164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 1, - anon_sym_RBRACE, - [45146] = 2, + ACTIONS(2211), 1, + anon_sym_SEMI, + [45171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 1, - anon_sym_RPAREN, - [45153] = 2, + ACTIONS(3515), 1, + anon_sym_while, + [45178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, - sym_identifier, - [45160] = 2, + ACTIONS(3517), 1, + anon_sym_SEMI, + [45185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3500), 1, + ACTIONS(3519), 1, sym_identifier, - [45167] = 2, + [45192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - aux_sym_preproc_if_token2, - [45174] = 2, + ACTIONS(3521), 1, + sym_identifier, + [45199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2233), 1, anon_sym_SEMI, - [45181] = 2, - ACTIONS(3), 1, + [45206] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3506), 1, - anon_sym_SEMI, - [45188] = 2, + ACTIONS(3523), 1, + anon_sym_LF, + [45213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3525), 1, aux_sym_preproc_if_token2, - [45195] = 2, + [45220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_COLON, - [45202] = 2, + ACTIONS(3527), 1, + anon_sym_RPAREN, + [45227] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_LF, + [45234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3531), 1, sym_identifier, - [45209] = 2, + [45241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_COLON, - [45216] = 2, + ACTIONS(2099), 1, + anon_sym_RBRACE, + [45248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3516), 1, - sym_identifier, - [45223] = 2, + ACTIONS(2158), 1, + anon_sym_RPAREN, + [45255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(2152), 1, anon_sym_RPAREN, - [45230] = 2, - ACTIONS(1759), 1, - anon_sym_LF, - ACTIONS(2495), 1, + [45262] = 2, + ACTIONS(2513), 1, sym_comment, - [45237] = 2, + ACTIONS(3137), 1, + anon_sym_LF, + [45269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, - anon_sym_STAR, - [45244] = 2, - ACTIONS(1749), 1, - anon_sym_LF, - ACTIONS(2495), 1, + ACTIONS(2140), 1, + anon_sym_SEMI, + [45276] = 2, + ACTIONS(3), 1, sym_comment, - [45251] = 2, + ACTIONS(3533), 1, + aux_sym_preproc_if_token2, + [45283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 1, - anon_sym_COLON, - [45258] = 2, + ACTIONS(3535), 1, + anon_sym_SEMI, + [45290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3524), 1, + ACTIONS(3537), 1, sym_identifier, - [45265] = 2, + [45297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, + ACTIONS(3539), 1, anon_sym_SEMI, - [45272] = 2, + [45304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, - anon_sym_SEMI, - [45279] = 2, + ACTIONS(3541), 1, + sym_identifier, + [45311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 1, - anon_sym_SEMI, - [45286] = 2, + ACTIONS(3543), 1, + anon_sym_RPAREN, + [45318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, - aux_sym_preproc_if_token2, - [45293] = 2, + ACTIONS(3545), 1, + anon_sym_COLON, + [45325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3532), 1, - sym_identifier, - [45300] = 2, + ACTIONS(2130), 1, + anon_sym_RPAREN, + [45332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2160), 1, anon_sym_SEMI, - [45307] = 2, - ACTIONS(2495), 1, + [45339] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_LF, - [45314] = 2, + ACTIONS(3547), 1, + aux_sym_preproc_if_token2, + [45346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2156), 1, anon_sym_SEMI, - [45321] = 2, - ACTIONS(2495), 1, + [45353] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 1, - anon_sym_LF, - [45328] = 2, + ACTIONS(2164), 1, + anon_sym_RPAREN, + [45360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 1, + ACTIONS(3549), 1, anon_sym_RPAREN, - [45335] = 2, + [45367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(2146), 1, anon_sym_SEMI, - [45342] = 2, + [45374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, - sym_identifier, - [45349] = 2, + ACTIONS(2253), 1, + anon_sym_RPAREN, + [45381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3551), 1, sym_identifier, - [45356] = 2, + [45388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(3553), 1, sym_identifier, - [45363] = 2, - ACTIONS(2495), 1, + [45395] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, - anon_sym_LF, - [45370] = 2, + ACTIONS(2138), 1, + anon_sym_RPAREN, + [45402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 1, - aux_sym_preproc_if_token2, - [45377] = 2, + ACTIONS(2241), 1, + anon_sym_RPAREN, + [45409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 1, - anon_sym_STAR, - [45384] = 2, + ACTIONS(3555), 1, + aux_sym_preproc_if_token2, + [45416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3548), 1, + ACTIONS(3557), 1, sym_identifier, - [45391] = 2, + [45423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 1, - anon_sym_RPAREN, - [45398] = 2, + ACTIONS(3559), 1, + anon_sym_STAR, + [45430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - anon_sym_RPAREN, - [45405] = 2, + ACTIONS(3561), 1, + aux_sym_preproc_if_token2, + [45437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, - anon_sym_SQUOTE, - [45412] = 2, + ACTIONS(2209), 1, + anon_sym_RPAREN, + [45444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_SEMI, - [45419] = 2, + ACTIONS(3563), 1, + aux_sym_preproc_if_token2, + [45451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(3565), 1, anon_sym_SEMI, - [45426] = 2, + [45458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_RPAREN, - [45433] = 2, - ACTIONS(3), 1, + ACTIONS(2207), 1, + anon_sym_SEMI, + [45465] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3556), 1, - anon_sym_while, - [45440] = 2, + ACTIONS(3567), 1, + anon_sym_LF, + [45472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2201), 1, anon_sym_RPAREN, - [45447] = 2, + [45479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_RPAREN, - [45454] = 2, + ACTIONS(3569), 1, + sym_identifier, + [45486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2197), 1, anon_sym_SEMI, - [45461] = 2, + [45493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, - anon_sym_SEMI, - [45468] = 2, + ACTIONS(3571), 1, + aux_sym_preproc_if_token2, + [45500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2134), 1, anon_sym_SEMI, - [45475] = 2, + [45507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 1, - aux_sym_preproc_if_token2, - [45482] = 2, + ACTIONS(2219), 1, + anon_sym_RPAREN, + [45514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, - sym_identifier, - [45489] = 2, + ACTIONS(3573), 1, + aux_sym_preproc_if_token2, + [45521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 1, + ACTIONS(2136), 1, anon_sym_SEMI, - [45496] = 2, + [45528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3575), 1, sym_identifier, - [45503] = 2, + [45535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, + ACTIONS(3577), 1, sym_identifier, - [45510] = 2, + [45542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3579), 1, sym_identifier, - [45517] = 2, + [45549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_SEMI, - [45524] = 2, + ACTIONS(3581), 1, + aux_sym_preproc_if_token2, + [45556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, - aux_sym_preproc_if_token2, - [45531] = 2, + ACTIONS(3583), 1, + sym_identifier, + [45563] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3273), 1, + anon_sym_LF, + [45570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, + ACTIONS(2213), 1, anon_sym_SEMI, - [45538] = 2, + [45577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, - anon_sym_RPAREN, - [45545] = 2, + ACTIONS(2237), 1, + anon_sym_SEMI, + [45584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - anon_sym_RPAREN, - [45552] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3576), 1, - anon_sym_LF, - [45559] = 2, + ACTIONS(3585), 1, + ts_builtin_sym_end, + [45591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - anon_sym_SQUOTE, - [45566] = 2, + ACTIONS(3587), 1, + anon_sym_SEMI, + [45598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - anon_sym_RPAREN, - [45573] = 2, + ACTIONS(3589), 1, + anon_sym_SEMI, + [45605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3591), 1, anon_sym_RPAREN, - [45580] = 2, - ACTIONS(2495), 1, + [45612] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, - anon_sym_LF, - [45587] = 2, + ACTIONS(3593), 1, + anon_sym_LPAREN2, + [45619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(3595), 1, anon_sym_while, - [45594] = 2, - ACTIONS(2495), 1, - sym_comment, - ACTIONS(3220), 1, - anon_sym_LF, - [45601] = 2, + [45626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_SEMI, - [45608] = 2, + ACTIONS(3597), 1, + anon_sym_LPAREN2, + [45633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - ts_builtin_sym_end, - [45615] = 2, + ACTIONS(3599), 1, + sym_identifier, + [45640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_RPAREN, - [45622] = 2, + ACTIONS(3601), 1, + anon_sym_SEMI, + [45647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 1, - anon_sym_SEMI, - [45629] = 2, + ACTIONS(3603), 1, + aux_sym_preproc_if_token2, + [45654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(3605), 1, anon_sym_SEMI, - [45636] = 2, + [45661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - [45643] = 2, + ACTIONS(2223), 1, + anon_sym_SEMI, + [45668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3592), 1, + ACTIONS(3607), 1, anon_sym_LPAREN2, - [45650] = 2, + [45675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, - sym_identifier, - [45657] = 2, + ACTIONS(3609), 1, + anon_sym_COLON, + [45682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(2142), 1, anon_sym_SEMI, - [45664] = 2, + [45689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_SEMI, - [45671] = 2, + ACTIONS(3611), 1, + anon_sym_COLON, + [45696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, - anon_sym_while, - [45678] = 2, + ACTIONS(3613), 1, + aux_sym_preproc_if_token2, + [45703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_LPAREN2, - [45685] = 2, + ACTIONS(3615), 1, + anon_sym_while, + [45710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 1, + ACTIONS(3617), 1, aux_sym_preproc_if_token2, - [45692] = 2, + [45717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - anon_sym_COLON, - [45699] = 2, + ACTIONS(3619), 1, + anon_sym_RPAREN, + [45724] = 2, + ACTIONS(2513), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym_LF, + [45731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, + ACTIONS(2166), 1, anon_sym_SEMI, - [45706] = 2, - ACTIONS(3), 1, + [45738] = 2, + ACTIONS(1771), 1, + anon_sym_LF, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3608), 1, - aux_sym_preproc_if_token2, - [45713] = 2, + [45745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3623), 1, aux_sym_preproc_if_token2, - [45720] = 2, + [45752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3625), 1, anon_sym_RPAREN, - [45727] = 2, - ACTIONS(2495), 1, + [45759] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_LF, - [45734] = 2, + ACTIONS(3627), 1, + anon_sym_LPAREN2, + [45766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3629), 1, anon_sym_while, - [45741] = 2, + [45773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, - anon_sym_SEMI, - [45748] = 2, + ACTIONS(3631), 1, + aux_sym_preproc_if_token2, + [45780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - [45755] = 2, + [45787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(2239), 1, anon_sym_SEMI, - [45762] = 2, - ACTIONS(3), 1, + [45794] = 2, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3622), 1, - anon_sym_SEMI, - [45769] = 2, + ACTIONS(3635), 1, + anon_sym_LF, + [45801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, - anon_sym_LPAREN2, - [45776] = 2, + ACTIONS(3637), 1, + sym_identifier, + [45808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3639), 1, anon_sym_LPAREN2, - [45783] = 2, - ACTIONS(3), 1, + [45815] = 2, + ACTIONS(1747), 1, + anon_sym_LF, + ACTIONS(2513), 1, sym_comment, - ACTIONS(3628), 1, - aux_sym_preproc_if_token2, - [45790] = 2, + [45822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3641), 1, anon_sym_LPAREN2, - [45797] = 2, + [45829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(3643), 1, sym_identifier, - [45804] = 2, + [45836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3645), 1, anon_sym_LPAREN2, }; @@ -83082,27 +83213,27 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(400)] = 1625, [SMALL_STATE(401)] = 1735, [SMALL_STATE(402)] = 1845, - [SMALL_STATE(403)] = 1922, - [SMALL_STATE(404)] = 2023, - [SMALL_STATE(405)] = 2128, - [SMALL_STATE(406)] = 2229, - [SMALL_STATE(407)] = 2306, - [SMALL_STATE(408)] = 2407, - [SMALL_STATE(409)] = 2508, - [SMALL_STATE(410)] = 2587, + [SMALL_STATE(403)] = 1946, + [SMALL_STATE(404)] = 2047, + [SMALL_STATE(405)] = 2148, + [SMALL_STATE(406)] = 2227, + [SMALL_STATE(407)] = 2328, + [SMALL_STATE(408)] = 2433, + [SMALL_STATE(409)] = 2510, + [SMALL_STATE(410)] = 2589, [SMALL_STATE(411)] = 2666, [SMALL_STATE(412)] = 2767, - [SMALL_STATE(413)] = 2868, - [SMALL_STATE(414)] = 2969, - [SMALL_STATE(415)] = 3046, - [SMALL_STATE(416)] = 3147, - [SMALL_STATE(417)] = 3252, - [SMALL_STATE(418)] = 3331, + [SMALL_STATE(413)] = 2846, + [SMALL_STATE(414)] = 2951, + [SMALL_STATE(415)] = 3052, + [SMALL_STATE(416)] = 3153, + [SMALL_STATE(417)] = 3230, + [SMALL_STATE(418)] = 3309, [SMALL_STATE(419)] = 3410, - [SMALL_STATE(420)] = 3511, - [SMALL_STATE(421)] = 3612, + [SMALL_STATE(420)] = 3487, + [SMALL_STATE(421)] = 3588, [SMALL_STATE(422)] = 3689, - [SMALL_STATE(423)] = 3763, + [SMALL_STATE(423)] = 3791, [SMALL_STATE(424)] = 3865, [SMALL_STATE(425)] = 3967, [SMALL_STATE(426)] = 4067, @@ -83116,7 +83247,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(434)] = 4826, [SMALL_STATE(435)] = 4887, [SMALL_STATE(436)] = 4980, - [SMALL_STATE(437)] = 5041, + [SMALL_STATE(437)] = 5073, [SMALL_STATE(438)] = 5134, [SMALL_STATE(439)] = 5227, [SMALL_STATE(440)] = 5317, @@ -83167,20 +83298,20 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(485)] = 9367, [SMALL_STATE(486)] = 9454, [SMALL_STATE(487)] = 9541, - [SMALL_STATE(488)] = 9628, - [SMALL_STATE(489)] = 9715, + [SMALL_STATE(488)] = 9596, + [SMALL_STATE(489)] = 9683, [SMALL_STATE(490)] = 9770, [SMALL_STATE(491)] = 9857, [SMALL_STATE(492)] = 9944, [SMALL_STATE(493)] = 10031, - [SMALL_STATE(494)] = 10086, - [SMALL_STATE(495)] = 10173, - [SMALL_STATE(496)] = 10260, - [SMALL_STATE(497)] = 10347, - [SMALL_STATE(498)] = 10434, - [SMALL_STATE(499)] = 10521, - [SMALL_STATE(500)] = 10608, - [SMALL_STATE(501)] = 10695, + [SMALL_STATE(494)] = 10118, + [SMALL_STATE(495)] = 10205, + [SMALL_STATE(496)] = 10292, + [SMALL_STATE(497)] = 10379, + [SMALL_STATE(498)] = 10466, + [SMALL_STATE(499)] = 10553, + [SMALL_STATE(500)] = 10640, + [SMALL_STATE(501)] = 10727, [SMALL_STATE(502)] = 10782, [SMALL_STATE(503)] = 10869, [SMALL_STATE(504)] = 10956, @@ -83264,916 +83395,917 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(582)] = 17514, [SMALL_STATE(583)] = 17578, [SMALL_STATE(584)] = 17629, - [SMALL_STATE(585)] = 17679, - [SMALL_STATE(586)] = 17745, - [SMALL_STATE(587)] = 17795, - [SMALL_STATE(588)] = 17855, - [SMALL_STATE(589)] = 17939, - [SMALL_STATE(590)] = 17989, - [SMALL_STATE(591)] = 18049, - [SMALL_STATE(592)] = 18109, - [SMALL_STATE(593)] = 18159, - [SMALL_STATE(594)] = 18209, - [SMALL_STATE(595)] = 18259, - [SMALL_STATE(596)] = 18309, - [SMALL_STATE(597)] = 18359, - [SMALL_STATE(598)] = 18409, - [SMALL_STATE(599)] = 18473, - [SMALL_STATE(600)] = 18539, - [SMALL_STATE(601)] = 18589, - [SMALL_STATE(602)] = 18659, - [SMALL_STATE(603)] = 18709, - [SMALL_STATE(604)] = 18759, - [SMALL_STATE(605)] = 18831, - [SMALL_STATE(606)] = 18881, - [SMALL_STATE(607)] = 18931, - [SMALL_STATE(608)] = 19005, - [SMALL_STATE(609)] = 19081, - [SMALL_STATE(610)] = 19159, - [SMALL_STATE(611)] = 19239, - [SMALL_STATE(612)] = 19289, - [SMALL_STATE(613)] = 19351, - [SMALL_STATE(614)] = 19409, + [SMALL_STATE(585)] = 17713, + [SMALL_STATE(586)] = 17763, + [SMALL_STATE(587)] = 17813, + [SMALL_STATE(588)] = 17871, + [SMALL_STATE(589)] = 17921, + [SMALL_STATE(590)] = 17971, + [SMALL_STATE(591)] = 18031, + [SMALL_STATE(592)] = 18081, + [SMALL_STATE(593)] = 18131, + [SMALL_STATE(594)] = 18215, + [SMALL_STATE(595)] = 18265, + [SMALL_STATE(596)] = 18315, + [SMALL_STATE(597)] = 18375, + [SMALL_STATE(598)] = 18425, + [SMALL_STATE(599)] = 18475, + [SMALL_STATE(600)] = 18535, + [SMALL_STATE(601)] = 18585, + [SMALL_STATE(602)] = 18635, + [SMALL_STATE(603)] = 18701, + [SMALL_STATE(604)] = 18761, + [SMALL_STATE(605)] = 18811, + [SMALL_STATE(606)] = 18861, + [SMALL_STATE(607)] = 18911, + [SMALL_STATE(608)] = 18975, + [SMALL_STATE(609)] = 19041, + [SMALL_STATE(610)] = 19111, + [SMALL_STATE(611)] = 19183, + [SMALL_STATE(612)] = 19257, + [SMALL_STATE(613)] = 19333, + [SMALL_STATE(614)] = 19411, [SMALL_STATE(615)] = 19491, - [SMALL_STATE(616)] = 19541, - [SMALL_STATE(617)] = 19591, - [SMALL_STATE(618)] = 19641, - [SMALL_STATE(619)] = 19725, - [SMALL_STATE(620)] = 19785, + [SMALL_STATE(616)] = 19553, + [SMALL_STATE(617)] = 19603, + [SMALL_STATE(618)] = 19685, + [SMALL_STATE(619)] = 19735, + [SMALL_STATE(620)] = 19819, [SMALL_STATE(621)] = 19869, - [SMALL_STATE(622)] = 19950, - [SMALL_STATE(623)] = 19999, - [SMALL_STATE(624)] = 20048, - [SMALL_STATE(625)] = 20101, + [SMALL_STATE(622)] = 19918, + [SMALL_STATE(623)] = 19967, + [SMALL_STATE(624)] = 20016, + [SMALL_STATE(625)] = 20097, [SMALL_STATE(626)] = 20150, [SMALL_STATE(627)] = 20203, [SMALL_STATE(628)] = 20256, [SMALL_STATE(629)] = 20309, [SMALL_STATE(630)] = 20362, - [SMALL_STATE(631)] = 20442, - [SMALL_STATE(632)] = 20516, - [SMALL_STATE(633)] = 20574, - [SMALL_STATE(634)] = 20650, - [SMALL_STATE(635)] = 20706, - [SMALL_STATE(636)] = 20780, - [SMALL_STATE(637)] = 20836, + [SMALL_STATE(631)] = 20418, + [SMALL_STATE(632)] = 20474, + [SMALL_STATE(633)] = 20548, + [SMALL_STATE(634)] = 20622, + [SMALL_STATE(635)] = 20696, + [SMALL_STATE(636)] = 20776, + [SMALL_STATE(637)] = 20854, [SMALL_STATE(638)] = 20908, - [SMALL_STATE(639)] = 20964, - [SMALL_STATE(640)] = 21034, - [SMALL_STATE(641)] = 21108, - [SMALL_STATE(642)] = 21176, - [SMALL_STATE(643)] = 21238, - [SMALL_STATE(644)] = 21298, - [SMALL_STATE(645)] = 21372, - [SMALL_STATE(646)] = 21438, - [SMALL_STATE(647)] = 21494, - [SMALL_STATE(648)] = 21572, - [SMALL_STATE(649)] = 21634, - [SMALL_STATE(650)] = 21692, - [SMALL_STATE(651)] = 21772, - [SMALL_STATE(652)] = 21826, - [SMALL_STATE(653)] = 21900, - [SMALL_STATE(654)] = 21949, - [SMALL_STATE(655)] = 22020, - [SMALL_STATE(656)] = 22065, - [SMALL_STATE(657)] = 22110, - [SMALL_STATE(658)] = 22155, - [SMALL_STATE(659)] = 22203, - [SMALL_STATE(660)] = 22279, - [SMALL_STATE(661)] = 22321, - [SMALL_STATE(662)] = 22362, - [SMALL_STATE(663)] = 22402, - [SMALL_STATE(664)] = 22441, - [SMALL_STATE(665)] = 22498, - [SMALL_STATE(666)] = 22537, - [SMALL_STATE(667)] = 22576, - [SMALL_STATE(668)] = 22615, - [SMALL_STATE(669)] = 22654, - [SMALL_STATE(670)] = 22693, - [SMALL_STATE(671)] = 22732, - [SMALL_STATE(672)] = 22771, - [SMALL_STATE(673)] = 22824, - [SMALL_STATE(674)] = 22863, - [SMALL_STATE(675)] = 22902, - [SMALL_STATE(676)] = 22941, - [SMALL_STATE(677)] = 23010, - [SMALL_STATE(678)] = 23077, - [SMALL_STATE(679)] = 23150, - [SMALL_STATE(680)] = 23217, - [SMALL_STATE(681)] = 23282, - [SMALL_STATE(682)] = 23345, - [SMALL_STATE(683)] = 23384, - [SMALL_STATE(684)] = 23445, - [SMALL_STATE(685)] = 23502, - [SMALL_STATE(686)] = 23541, - [SMALL_STATE(687)] = 23614, - [SMALL_STATE(688)] = 23653, - [SMALL_STATE(689)] = 23708, - [SMALL_STATE(690)] = 23747, - [SMALL_STATE(691)] = 23786, - [SMALL_STATE(692)] = 23825, - [SMALL_STATE(693)] = 23864, - [SMALL_STATE(694)] = 23903, - [SMALL_STATE(695)] = 23974, - [SMALL_STATE(696)] = 24013, - [SMALL_STATE(697)] = 24052, - [SMALL_STATE(698)] = 24091, - [SMALL_STATE(699)] = 24130, - [SMALL_STATE(700)] = 24169, - [SMALL_STATE(701)] = 24219, - [SMALL_STATE(702)] = 24269, - [SMALL_STATE(703)] = 24319, - [SMALL_STATE(704)] = 24357, - [SMALL_STATE(705)] = 24407, - [SMALL_STATE(706)] = 24445, - [SMALL_STATE(707)] = 24482, - [SMALL_STATE(708)] = 24519, - [SMALL_STATE(709)] = 24556, - [SMALL_STATE(710)] = 24593, - [SMALL_STATE(711)] = 24630, - [SMALL_STATE(712)] = 24667, - [SMALL_STATE(713)] = 24704, - [SMALL_STATE(714)] = 24741, - [SMALL_STATE(715)] = 24778, - [SMALL_STATE(716)] = 24815, - [SMALL_STATE(717)] = 24888, - [SMALL_STATE(718)] = 24925, - [SMALL_STATE(719)] = 24962, - [SMALL_STATE(720)] = 24999, - [SMALL_STATE(721)] = 25036, - [SMALL_STATE(722)] = 25073, - [SMALL_STATE(723)] = 25110, - [SMALL_STATE(724)] = 25151, - [SMALL_STATE(725)] = 25188, - [SMALL_STATE(726)] = 25225, - [SMALL_STATE(727)] = 25262, - [SMALL_STATE(728)] = 25299, - [SMALL_STATE(729)] = 25336, - [SMALL_STATE(730)] = 25373, - [SMALL_STATE(731)] = 25410, - [SMALL_STATE(732)] = 25447, - [SMALL_STATE(733)] = 25488, - [SMALL_STATE(734)] = 25563, - [SMALL_STATE(735)] = 25600, - [SMALL_STATE(736)] = 25675, - [SMALL_STATE(737)] = 25716, - [SMALL_STATE(738)] = 25757, - [SMALL_STATE(739)] = 25794, - [SMALL_STATE(740)] = 25831, - [SMALL_STATE(741)] = 25868, - [SMALL_STATE(742)] = 25905, - [SMALL_STATE(743)] = 25942, - [SMALL_STATE(744)] = 26017, - [SMALL_STATE(745)] = 26058, - [SMALL_STATE(746)] = 26095, - [SMALL_STATE(747)] = 26132, - [SMALL_STATE(748)] = 26169, - [SMALL_STATE(749)] = 26206, - [SMALL_STATE(750)] = 26251, - [SMALL_STATE(751)] = 26288, - [SMALL_STATE(752)] = 26325, - [SMALL_STATE(753)] = 26362, - [SMALL_STATE(754)] = 26399, - [SMALL_STATE(755)] = 26436, - [SMALL_STATE(756)] = 26511, - [SMALL_STATE(757)] = 26548, - [SMALL_STATE(758)] = 26618, - [SMALL_STATE(759)] = 26688, - [SMALL_STATE(760)] = 26760, - [SMALL_STATE(761)] = 26832, - [SMALL_STATE(762)] = 26904, - [SMALL_STATE(763)] = 26976, - [SMALL_STATE(764)] = 27048, - [SMALL_STATE(765)] = 27120, - [SMALL_STATE(766)] = 27192, - [SMALL_STATE(767)] = 27264, - [SMALL_STATE(768)] = 27336, - [SMALL_STATE(769)] = 27408, - [SMALL_STATE(770)] = 27480, - [SMALL_STATE(771)] = 27552, - [SMALL_STATE(772)] = 27624, - [SMALL_STATE(773)] = 27696, - [SMALL_STATE(774)] = 27768, - [SMALL_STATE(775)] = 27840, - [SMALL_STATE(776)] = 27912, - [SMALL_STATE(777)] = 27984, - [SMALL_STATE(778)] = 28056, - [SMALL_STATE(779)] = 28128, - [SMALL_STATE(780)] = 28198, - [SMALL_STATE(781)] = 28270, - [SMALL_STATE(782)] = 28342, - [SMALL_STATE(783)] = 28412, - [SMALL_STATE(784)] = 28484, - [SMALL_STATE(785)] = 28556, - [SMALL_STATE(786)] = 28628, - [SMALL_STATE(787)] = 28700, - [SMALL_STATE(788)] = 28772, - [SMALL_STATE(789)] = 28844, - [SMALL_STATE(790)] = 28916, - [SMALL_STATE(791)] = 28988, - [SMALL_STATE(792)] = 29060, - [SMALL_STATE(793)] = 29132, - [SMALL_STATE(794)] = 29204, - [SMALL_STATE(795)] = 29276, - [SMALL_STATE(796)] = 29348, - [SMALL_STATE(797)] = 29420, - [SMALL_STATE(798)] = 29492, - [SMALL_STATE(799)] = 29564, - [SMALL_STATE(800)] = 29636, - [SMALL_STATE(801)] = 29708, - [SMALL_STATE(802)] = 29780, - [SMALL_STATE(803)] = 29852, - [SMALL_STATE(804)] = 29922, - [SMALL_STATE(805)] = 29982, - [SMALL_STATE(806)] = 30052, - [SMALL_STATE(807)] = 30124, - [SMALL_STATE(808)] = 30196, - [SMALL_STATE(809)] = 30268, - [SMALL_STATE(810)] = 30340, - [SMALL_STATE(811)] = 30412, - [SMALL_STATE(812)] = 30484, - [SMALL_STATE(813)] = 30556, - [SMALL_STATE(814)] = 30628, - [SMALL_STATE(815)] = 30697, - [SMALL_STATE(816)] = 30766, - [SMALL_STATE(817)] = 30833, - [SMALL_STATE(818)] = 30884, - [SMALL_STATE(819)] = 30941, - [SMALL_STATE(820)] = 31010, - [SMALL_STATE(821)] = 31079, - [SMALL_STATE(822)] = 31148, - [SMALL_STATE(823)] = 31217, - [SMALL_STATE(824)] = 31286, - [SMALL_STATE(825)] = 31355, - [SMALL_STATE(826)] = 31408, - [SMALL_STATE(827)] = 31477, - [SMALL_STATE(828)] = 31546, - [SMALL_STATE(829)] = 31615, - [SMALL_STATE(830)] = 31684, - [SMALL_STATE(831)] = 31753, - [SMALL_STATE(832)] = 31810, - [SMALL_STATE(833)] = 31863, - [SMALL_STATE(834)] = 31920, - [SMALL_STATE(835)] = 31977, - [SMALL_STATE(836)] = 32036, - [SMALL_STATE(837)] = 32097, - [SMALL_STATE(838)] = 32154, - [SMALL_STATE(839)] = 32223, - [SMALL_STATE(840)] = 32286, - [SMALL_STATE(841)] = 32343, - [SMALL_STATE(842)] = 32412, - [SMALL_STATE(843)] = 32481, - [SMALL_STATE(844)] = 32538, - [SMALL_STATE(845)] = 32595, - [SMALL_STATE(846)] = 32664, - [SMALL_STATE(847)] = 32733, - [SMALL_STATE(848)] = 32802, - [SMALL_STATE(849)] = 32865, - [SMALL_STATE(850)] = 32922, - [SMALL_STATE(851)] = 32991, - [SMALL_STATE(852)] = 33048, - [SMALL_STATE(853)] = 33105, - [SMALL_STATE(854)] = 33170, - [SMALL_STATE(855)] = 33239, - [SMALL_STATE(856)] = 33296, - [SMALL_STATE(857)] = 33345, - [SMALL_STATE(858)] = 33414, - [SMALL_STATE(859)] = 33483, - [SMALL_STATE(860)] = 33540, - [SMALL_STATE(861)] = 33609, - [SMALL_STATE(862)] = 33657, - [SMALL_STATE(863)] = 33705, - [SMALL_STATE(864)] = 33753, - [SMALL_STATE(865)] = 33801, - [SMALL_STATE(866)] = 33854, - [SMALL_STATE(867)] = 33891, - [SMALL_STATE(868)] = 33944, - [SMALL_STATE(869)] = 33997, - [SMALL_STATE(870)] = 34050, - [SMALL_STATE(871)] = 34087, - [SMALL_STATE(872)] = 34124, - [SMALL_STATE(873)] = 34161, - [SMALL_STATE(874)] = 34198, - [SMALL_STATE(875)] = 34234, - [SMALL_STATE(876)] = 34284, - [SMALL_STATE(877)] = 34334, - [SMALL_STATE(878)] = 34384, - [SMALL_STATE(879)] = 34434, - [SMALL_STATE(880)] = 34484, - [SMALL_STATE(881)] = 34534, - [SMALL_STATE(882)] = 34584, - [SMALL_STATE(883)] = 34634, - [SMALL_STATE(884)] = 34684, - [SMALL_STATE(885)] = 34715, - [SMALL_STATE(886)] = 34746, - [SMALL_STATE(887)] = 34777, - [SMALL_STATE(888)] = 34810, - [SMALL_STATE(889)] = 34841, - [SMALL_STATE(890)] = 34872, - [SMALL_STATE(891)] = 34903, - [SMALL_STATE(892)] = 34934, - [SMALL_STATE(893)] = 34965, - [SMALL_STATE(894)] = 34996, - [SMALL_STATE(895)] = 35027, - [SMALL_STATE(896)] = 35058, - [SMALL_STATE(897)] = 35089, - [SMALL_STATE(898)] = 35120, - [SMALL_STATE(899)] = 35151, - [SMALL_STATE(900)] = 35182, - [SMALL_STATE(901)] = 35213, - [SMALL_STATE(902)] = 35244, - [SMALL_STATE(903)] = 35275, - [SMALL_STATE(904)] = 35306, - [SMALL_STATE(905)] = 35337, - [SMALL_STATE(906)] = 35368, - [SMALL_STATE(907)] = 35402, - [SMALL_STATE(908)] = 35437, - [SMALL_STATE(909)] = 35492, - [SMALL_STATE(910)] = 35547, - [SMALL_STATE(911)] = 35580, - [SMALL_STATE(912)] = 35623, - [SMALL_STATE(913)] = 35666, - [SMALL_STATE(914)] = 35706, - [SMALL_STATE(915)] = 35746, - [SMALL_STATE(916)] = 35794, - [SMALL_STATE(917)] = 35822, - [SMALL_STATE(918)] = 35868, - [SMALL_STATE(919)] = 35896, - [SMALL_STATE(920)] = 35942, - [SMALL_STATE(921)] = 35986, - [SMALL_STATE(922)] = 36028, - [SMALL_STATE(923)] = 36068, - [SMALL_STATE(924)] = 36108, - [SMALL_STATE(925)] = 36144, - [SMALL_STATE(926)] = 36178, - [SMALL_STATE(927)] = 36218, - [SMALL_STATE(928)] = 36246, - [SMALL_STATE(929)] = 36286, - [SMALL_STATE(930)] = 36314, - [SMALL_STATE(931)] = 36354, - [SMALL_STATE(932)] = 36394, - [SMALL_STATE(933)] = 36434, - [SMALL_STATE(934)] = 36474, - [SMALL_STATE(935)] = 36514, - [SMALL_STATE(936)] = 36554, - [SMALL_STATE(937)] = 36594, - [SMALL_STATE(938)] = 36634, - [SMALL_STATE(939)] = 36682, - [SMALL_STATE(940)] = 36722, - [SMALL_STATE(941)] = 36762, - [SMALL_STATE(942)] = 36802, - [SMALL_STATE(943)] = 36842, - [SMALL_STATE(944)] = 36882, - [SMALL_STATE(945)] = 36910, - [SMALL_STATE(946)] = 36952, - [SMALL_STATE(947)] = 36992, - [SMALL_STATE(948)] = 37032, - [SMALL_STATE(949)] = 37072, - [SMALL_STATE(950)] = 37112, - [SMALL_STATE(951)] = 37162, - [SMALL_STATE(952)] = 37202, - [SMALL_STATE(953)] = 37242, - [SMALL_STATE(954)] = 37282, - [SMALL_STATE(955)] = 37322, - [SMALL_STATE(956)] = 37362, - [SMALL_STATE(957)] = 37402, - [SMALL_STATE(958)] = 37442, - [SMALL_STATE(959)] = 37484, - [SMALL_STATE(960)] = 37512, - [SMALL_STATE(961)] = 37552, - [SMALL_STATE(962)] = 37580, - [SMALL_STATE(963)] = 37622, - [SMALL_STATE(964)] = 37650, - [SMALL_STATE(965)] = 37692, - [SMALL_STATE(966)] = 37734, - [SMALL_STATE(967)] = 37776, - [SMALL_STATE(968)] = 37804, - [SMALL_STATE(969)] = 37844, - [SMALL_STATE(970)] = 37884, - [SMALL_STATE(971)] = 37924, - [SMALL_STATE(972)] = 37964, - [SMALL_STATE(973)] = 37992, - [SMALL_STATE(974)] = 38024, - [SMALL_STATE(975)] = 38065, - [SMALL_STATE(976)] = 38092, - [SMALL_STATE(977)] = 38141, - [SMALL_STATE(978)] = 38168, - [SMALL_STATE(979)] = 38213, - [SMALL_STATE(980)] = 38258, - [SMALL_STATE(981)] = 38301, - [SMALL_STATE(982)] = 38346, - [SMALL_STATE(983)] = 38387, - [SMALL_STATE(984)] = 38436, - [SMALL_STATE(985)] = 38471, - [SMALL_STATE(986)] = 38512, - [SMALL_STATE(987)] = 38553, - [SMALL_STATE(988)] = 38594, - [SMALL_STATE(989)] = 38621, - [SMALL_STATE(990)] = 38666, - [SMALL_STATE(991)] = 38693, - [SMALL_STATE(992)] = 38720, - [SMALL_STATE(993)] = 38749, - [SMALL_STATE(994)] = 38794, - [SMALL_STATE(995)] = 38839, - [SMALL_STATE(996)] = 38866, - [SMALL_STATE(997)] = 38907, - [SMALL_STATE(998)] = 38952, - [SMALL_STATE(999)] = 38997, - [SMALL_STATE(1000)] = 39024, - [SMALL_STATE(1001)] = 39051, - [SMALL_STATE(1002)] = 39092, - [SMALL_STATE(1003)] = 39137, - [SMALL_STATE(1004)] = 39178, - [SMALL_STATE(1005)] = 39205, - [SMALL_STATE(1006)] = 39232, - [SMALL_STATE(1007)] = 39271, - [SMALL_STATE(1008)] = 39308, - [SMALL_STATE(1009)] = 39349, - [SMALL_STATE(1010)] = 39384, - [SMALL_STATE(1011)] = 39425, - [SMALL_STATE(1012)] = 39458, - [SMALL_STATE(1013)] = 39503, - [SMALL_STATE(1014)] = 39534, - [SMALL_STATE(1015)] = 39568, - [SMALL_STATE(1016)] = 39591, - [SMALL_STATE(1017)] = 39614, - [SMALL_STATE(1018)] = 39652, - [SMALL_STATE(1019)] = 39690, - [SMALL_STATE(1020)] = 39728, - [SMALL_STATE(1021)] = 39760, - [SMALL_STATE(1022)] = 39798, - [SMALL_STATE(1023)] = 39830, - [SMALL_STATE(1024)] = 39862, - [SMALL_STATE(1025)] = 39894, - [SMALL_STATE(1026)] = 39932, - [SMALL_STATE(1027)] = 39964, - [SMALL_STATE(1028)] = 39996, - [SMALL_STATE(1029)] = 40034, - [SMALL_STATE(1030)] = 40066, - [SMALL_STATE(1031)] = 40098, - [SMALL_STATE(1032)] = 40130, - [SMALL_STATE(1033)] = 40168, - [SMALL_STATE(1034)] = 40197, - [SMALL_STATE(1035)] = 40226, - [SMALL_STATE(1036)] = 40255, - [SMALL_STATE(1037)] = 40278, - [SMALL_STATE(1038)] = 40307, - [SMALL_STATE(1039)] = 40334, - [SMALL_STATE(1040)] = 40363, - [SMALL_STATE(1041)] = 40392, - [SMALL_STATE(1042)] = 40421, - [SMALL_STATE(1043)] = 40450, - [SMALL_STATE(1044)] = 40477, - [SMALL_STATE(1045)] = 40504, - [SMALL_STATE(1046)] = 40539, - [SMALL_STATE(1047)] = 40562, - [SMALL_STATE(1048)] = 40591, - [SMALL_STATE(1049)] = 40626, - [SMALL_STATE(1050)] = 40649, - [SMALL_STATE(1051)] = 40678, - [SMALL_STATE(1052)] = 40707, - [SMALL_STATE(1053)] = 40736, - [SMALL_STATE(1054)] = 40763, - [SMALL_STATE(1055)] = 40792, - [SMALL_STATE(1056)] = 40815, - [SMALL_STATE(1057)] = 40844, - [SMALL_STATE(1058)] = 40873, - [SMALL_STATE(1059)] = 40908, - [SMALL_STATE(1060)] = 40937, - [SMALL_STATE(1061)] = 40966, - [SMALL_STATE(1062)] = 40998, - [SMALL_STATE(1063)] = 41016, - [SMALL_STATE(1064)] = 41034, - [SMALL_STATE(1065)] = 41056, - [SMALL_STATE(1066)] = 41082, - [SMALL_STATE(1067)] = 41108, - [SMALL_STATE(1068)] = 41134, - [SMALL_STATE(1069)] = 41152, - [SMALL_STATE(1070)] = 41184, - [SMALL_STATE(1071)] = 41216, - [SMALL_STATE(1072)] = 41242, - [SMALL_STATE(1073)] = 41274, - [SMALL_STATE(1074)] = 41299, - [SMALL_STATE(1075)] = 41320, - [SMALL_STATE(1076)] = 41345, - [SMALL_STATE(1077)] = 41366, - [SMALL_STATE(1078)] = 41395, - [SMALL_STATE(1079)] = 41420, - [SMALL_STATE(1080)] = 41449, - [SMALL_STATE(1081)] = 41470, - [SMALL_STATE(1082)] = 41499, - [SMALL_STATE(1083)] = 41520, - [SMALL_STATE(1084)] = 41549, - [SMALL_STATE(1085)] = 41578, - [SMALL_STATE(1086)] = 41607, - [SMALL_STATE(1087)] = 41632, - [SMALL_STATE(1088)] = 41661, - [SMALL_STATE(1089)] = 41682, - [SMALL_STATE(1090)] = 41707, - [SMALL_STATE(1091)] = 41734, - [SMALL_STATE(1092)] = 41763, - [SMALL_STATE(1093)] = 41779, - [SMALL_STATE(1094)] = 41795, - [SMALL_STATE(1095)] = 41811, - [SMALL_STATE(1096)] = 41837, - [SMALL_STATE(1097)] = 41861, - [SMALL_STATE(1098)] = 41877, - [SMALL_STATE(1099)] = 41903, - [SMALL_STATE(1100)] = 41929, - [SMALL_STATE(1101)] = 41945, - [SMALL_STATE(1102)] = 41961, - [SMALL_STATE(1103)] = 41985, - [SMALL_STATE(1104)] = 42011, - [SMALL_STATE(1105)] = 42031, - [SMALL_STATE(1106)] = 42046, - [SMALL_STATE(1107)] = 42069, - [SMALL_STATE(1108)] = 42084, - [SMALL_STATE(1109)] = 42099, - [SMALL_STATE(1110)] = 42114, - [SMALL_STATE(1111)] = 42137, - [SMALL_STATE(1112)] = 42160, - [SMALL_STATE(1113)] = 42175, - [SMALL_STATE(1114)] = 42190, - [SMALL_STATE(1115)] = 42205, - [SMALL_STATE(1116)] = 42220, - [SMALL_STATE(1117)] = 42238, - [SMALL_STATE(1118)] = 42252, - [SMALL_STATE(1119)] = 42266, - [SMALL_STATE(1120)] = 42280, - [SMALL_STATE(1121)] = 42298, - [SMALL_STATE(1122)] = 42316, - [SMALL_STATE(1123)] = 42330, - [SMALL_STATE(1124)] = 42344, - [SMALL_STATE(1125)] = 42358, - [SMALL_STATE(1126)] = 42376, - [SMALL_STATE(1127)] = 42394, - [SMALL_STATE(1128)] = 42412, - [SMALL_STATE(1129)] = 42426, - [SMALL_STATE(1130)] = 42444, - [SMALL_STATE(1131)] = 42458, - [SMALL_STATE(1132)] = 42476, - [SMALL_STATE(1133)] = 42487, - [SMALL_STATE(1134)] = 42498, - [SMALL_STATE(1135)] = 42509, - [SMALL_STATE(1136)] = 42520, - [SMALL_STATE(1137)] = 42537, - [SMALL_STATE(1138)] = 42556, - [SMALL_STATE(1139)] = 42573, - [SMALL_STATE(1140)] = 42584, - [SMALL_STATE(1141)] = 42595, - [SMALL_STATE(1142)] = 42606, - [SMALL_STATE(1143)] = 42625, - [SMALL_STATE(1144)] = 42636, - [SMALL_STATE(1145)] = 42655, - [SMALL_STATE(1146)] = 42666, - [SMALL_STATE(1147)] = 42685, - [SMALL_STATE(1148)] = 42704, - [SMALL_STATE(1149)] = 42715, - [SMALL_STATE(1150)] = 42726, - [SMALL_STATE(1151)] = 42737, - [SMALL_STATE(1152)] = 42753, - [SMALL_STATE(1153)] = 42769, - [SMALL_STATE(1154)] = 42785, - [SMALL_STATE(1155)] = 42801, - [SMALL_STATE(1156)] = 42817, - [SMALL_STATE(1157)] = 42831, - [SMALL_STATE(1158)] = 42847, - [SMALL_STATE(1159)] = 42863, - [SMALL_STATE(1160)] = 42879, - [SMALL_STATE(1161)] = 42895, - [SMALL_STATE(1162)] = 42911, - [SMALL_STATE(1163)] = 42927, - [SMALL_STATE(1164)] = 42941, - [SMALL_STATE(1165)] = 42957, - [SMALL_STATE(1166)] = 42973, - [SMALL_STATE(1167)] = 42989, - [SMALL_STATE(1168)] = 43005, - [SMALL_STATE(1169)] = 43021, - [SMALL_STATE(1170)] = 43030, - [SMALL_STATE(1171)] = 43043, - [SMALL_STATE(1172)] = 43056, - [SMALL_STATE(1173)] = 43069, - [SMALL_STATE(1174)] = 43082, - [SMALL_STATE(1175)] = 43095, - [SMALL_STATE(1176)] = 43108, - [SMALL_STATE(1177)] = 43121, - [SMALL_STATE(1178)] = 43134, - [SMALL_STATE(1179)] = 43147, - [SMALL_STATE(1180)] = 43160, - [SMALL_STATE(1181)] = 43173, - [SMALL_STATE(1182)] = 43184, - [SMALL_STATE(1183)] = 43197, - [SMALL_STATE(1184)] = 43210, - [SMALL_STATE(1185)] = 43223, - [SMALL_STATE(1186)] = 43236, - [SMALL_STATE(1187)] = 43249, - [SMALL_STATE(1188)] = 43262, - [SMALL_STATE(1189)] = 43275, - [SMALL_STATE(1190)] = 43288, - [SMALL_STATE(1191)] = 43301, - [SMALL_STATE(1192)] = 43314, - [SMALL_STATE(1193)] = 43327, - [SMALL_STATE(1194)] = 43340, - [SMALL_STATE(1195)] = 43353, - [SMALL_STATE(1196)] = 43366, - [SMALL_STATE(1197)] = 43379, - [SMALL_STATE(1198)] = 43392, - [SMALL_STATE(1199)] = 43405, - [SMALL_STATE(1200)] = 43418, - [SMALL_STATE(1201)] = 43431, - [SMALL_STATE(1202)] = 43444, - [SMALL_STATE(1203)] = 43457, - [SMALL_STATE(1204)] = 43470, - [SMALL_STATE(1205)] = 43483, - [SMALL_STATE(1206)] = 43496, - [SMALL_STATE(1207)] = 43509, - [SMALL_STATE(1208)] = 43522, - [SMALL_STATE(1209)] = 43535, - [SMALL_STATE(1210)] = 43548, - [SMALL_STATE(1211)] = 43561, - [SMALL_STATE(1212)] = 43574, - [SMALL_STATE(1213)] = 43585, - [SMALL_STATE(1214)] = 43598, - [SMALL_STATE(1215)] = 43611, - [SMALL_STATE(1216)] = 43624, - [SMALL_STATE(1217)] = 43637, - [SMALL_STATE(1218)] = 43650, - [SMALL_STATE(1219)] = 43663, - [SMALL_STATE(1220)] = 43676, - [SMALL_STATE(1221)] = 43689, - [SMALL_STATE(1222)] = 43702, - [SMALL_STATE(1223)] = 43715, - [SMALL_STATE(1224)] = 43728, - [SMALL_STATE(1225)] = 43741, - [SMALL_STATE(1226)] = 43754, - [SMALL_STATE(1227)] = 43767, - [SMALL_STATE(1228)] = 43780, - [SMALL_STATE(1229)] = 43793, - [SMALL_STATE(1230)] = 43806, - [SMALL_STATE(1231)] = 43815, - [SMALL_STATE(1232)] = 43825, - [SMALL_STATE(1233)] = 43835, - [SMALL_STATE(1234)] = 43845, - [SMALL_STATE(1235)] = 43853, - [SMALL_STATE(1236)] = 43863, - [SMALL_STATE(1237)] = 43873, - [SMALL_STATE(1238)] = 43883, - [SMALL_STATE(1239)] = 43891, - [SMALL_STATE(1240)] = 43901, - [SMALL_STATE(1241)] = 43909, - [SMALL_STATE(1242)] = 43917, - [SMALL_STATE(1243)] = 43927, - [SMALL_STATE(1244)] = 43937, - [SMALL_STATE(1245)] = 43947, - [SMALL_STATE(1246)] = 43957, - [SMALL_STATE(1247)] = 43965, - [SMALL_STATE(1248)] = 43975, + [SMALL_STATE(639)] = 20966, + [SMALL_STATE(640)] = 21042, + [SMALL_STATE(641)] = 21116, + [SMALL_STATE(642)] = 21188, + [SMALL_STATE(643)] = 21262, + [SMALL_STATE(644)] = 21342, + [SMALL_STATE(645)] = 21412, + [SMALL_STATE(646)] = 21480, + [SMALL_STATE(647)] = 21546, + [SMALL_STATE(648)] = 21608, + [SMALL_STATE(649)] = 21664, + [SMALL_STATE(650)] = 21726, + [SMALL_STATE(651)] = 21786, + [SMALL_STATE(652)] = 21842, + [SMALL_STATE(653)] = 21887, + [SMALL_STATE(654)] = 21944, + [SMALL_STATE(655)] = 22015, + [SMALL_STATE(656)] = 22064, + [SMALL_STATE(657)] = 22109, + [SMALL_STATE(658)] = 22154, + [SMALL_STATE(659)] = 22202, + [SMALL_STATE(660)] = 22278, + [SMALL_STATE(661)] = 22320, + [SMALL_STATE(662)] = 22360, + [SMALL_STATE(663)] = 22399, + [SMALL_STATE(664)] = 22438, + [SMALL_STATE(665)] = 22477, + [SMALL_STATE(666)] = 22516, + [SMALL_STATE(667)] = 22555, + [SMALL_STATE(668)] = 22594, + [SMALL_STATE(669)] = 22633, + [SMALL_STATE(670)] = 22672, + [SMALL_STATE(671)] = 22711, + [SMALL_STATE(672)] = 22750, + [SMALL_STATE(673)] = 22789, + [SMALL_STATE(674)] = 22828, + [SMALL_STATE(675)] = 22867, + [SMALL_STATE(676)] = 22906, + [SMALL_STATE(677)] = 22945, + [SMALL_STATE(678)] = 23016, + [SMALL_STATE(679)] = 23055, + [SMALL_STATE(680)] = 23094, + [SMALL_STATE(681)] = 23151, + [SMALL_STATE(682)] = 23190, + [SMALL_STATE(683)] = 23263, + [SMALL_STATE(684)] = 23302, + [SMALL_STATE(685)] = 23357, + [SMALL_STATE(686)] = 23430, + [SMALL_STATE(687)] = 23469, + [SMALL_STATE(688)] = 23526, + [SMALL_STATE(689)] = 23587, + [SMALL_STATE(690)] = 23650, + [SMALL_STATE(691)] = 23715, + [SMALL_STATE(692)] = 23782, + [SMALL_STATE(693)] = 23849, + [SMALL_STATE(694)] = 23918, + [SMALL_STATE(695)] = 23971, + [SMALL_STATE(696)] = 24010, + [SMALL_STATE(697)] = 24048, + [SMALL_STATE(698)] = 24086, + [SMALL_STATE(699)] = 24124, + [SMALL_STATE(700)] = 24162, + [SMALL_STATE(701)] = 24200, + [SMALL_STATE(702)] = 24237, + [SMALL_STATE(703)] = 24278, + [SMALL_STATE(704)] = 24353, + [SMALL_STATE(705)] = 24394, + [SMALL_STATE(706)] = 24467, + [SMALL_STATE(707)] = 24504, + [SMALL_STATE(708)] = 24579, + [SMALL_STATE(709)] = 24628, + [SMALL_STATE(710)] = 24677, + [SMALL_STATE(711)] = 24714, + [SMALL_STATE(712)] = 24751, + [SMALL_STATE(713)] = 24788, + [SMALL_STATE(714)] = 24825, + [SMALL_STATE(715)] = 24862, + [SMALL_STATE(716)] = 24899, + [SMALL_STATE(717)] = 24936, + [SMALL_STATE(718)] = 24973, + [SMALL_STATE(719)] = 25010, + [SMALL_STATE(720)] = 25047, + [SMALL_STATE(721)] = 25084, + [SMALL_STATE(722)] = 25159, + [SMALL_STATE(723)] = 25196, + [SMALL_STATE(724)] = 25233, + [SMALL_STATE(725)] = 25282, + [SMALL_STATE(726)] = 25319, + [SMALL_STATE(727)] = 25356, + [SMALL_STATE(728)] = 25393, + [SMALL_STATE(729)] = 25430, + [SMALL_STATE(730)] = 25467, + [SMALL_STATE(731)] = 25504, + [SMALL_STATE(732)] = 25541, + [SMALL_STATE(733)] = 25578, + [SMALL_STATE(734)] = 25615, + [SMALL_STATE(735)] = 25652, + [SMALL_STATE(736)] = 25689, + [SMALL_STATE(737)] = 25726, + [SMALL_STATE(738)] = 25775, + [SMALL_STATE(739)] = 25850, + [SMALL_STATE(740)] = 25891, + [SMALL_STATE(741)] = 25928, + [SMALL_STATE(742)] = 25965, + [SMALL_STATE(743)] = 26002, + [SMALL_STATE(744)] = 26043, + [SMALL_STATE(745)] = 26080, + [SMALL_STATE(746)] = 26117, + [SMALL_STATE(747)] = 26154, + [SMALL_STATE(748)] = 26195, + [SMALL_STATE(749)] = 26232, + [SMALL_STATE(750)] = 26269, + [SMALL_STATE(751)] = 26306, + [SMALL_STATE(752)] = 26343, + [SMALL_STATE(753)] = 26380, + [SMALL_STATE(754)] = 26452, + [SMALL_STATE(755)] = 26524, + [SMALL_STATE(756)] = 26596, + [SMALL_STATE(757)] = 26668, + [SMALL_STATE(758)] = 26740, + [SMALL_STATE(759)] = 26812, + [SMALL_STATE(760)] = 26884, + [SMALL_STATE(761)] = 26954, + [SMALL_STATE(762)] = 27026, + [SMALL_STATE(763)] = 27096, + [SMALL_STATE(764)] = 27168, + [SMALL_STATE(765)] = 27240, + [SMALL_STATE(766)] = 27312, + [SMALL_STATE(767)] = 27384, + [SMALL_STATE(768)] = 27456, + [SMALL_STATE(769)] = 27528, + [SMALL_STATE(770)] = 27600, + [SMALL_STATE(771)] = 27672, + [SMALL_STATE(772)] = 27744, + [SMALL_STATE(773)] = 27804, + [SMALL_STATE(774)] = 27876, + [SMALL_STATE(775)] = 27948, + [SMALL_STATE(776)] = 28020, + [SMALL_STATE(777)] = 28092, + [SMALL_STATE(778)] = 28164, + [SMALL_STATE(779)] = 28236, + [SMALL_STATE(780)] = 28306, + [SMALL_STATE(781)] = 28350, + [SMALL_STATE(782)] = 28420, + [SMALL_STATE(783)] = 28492, + [SMALL_STATE(784)] = 28564, + [SMALL_STATE(785)] = 28636, + [SMALL_STATE(786)] = 28708, + [SMALL_STATE(787)] = 28780, + [SMALL_STATE(788)] = 28852, + [SMALL_STATE(789)] = 28924, + [SMALL_STATE(790)] = 28996, + [SMALL_STATE(791)] = 29068, + [SMALL_STATE(792)] = 29138, + [SMALL_STATE(793)] = 29210, + [SMALL_STATE(794)] = 29282, + [SMALL_STATE(795)] = 29354, + [SMALL_STATE(796)] = 29426, + [SMALL_STATE(797)] = 29498, + [SMALL_STATE(798)] = 29570, + [SMALL_STATE(799)] = 29642, + [SMALL_STATE(800)] = 29712, + [SMALL_STATE(801)] = 29784, + [SMALL_STATE(802)] = 29856, + [SMALL_STATE(803)] = 29928, + [SMALL_STATE(804)] = 30000, + [SMALL_STATE(805)] = 30072, + [SMALL_STATE(806)] = 30144, + [SMALL_STATE(807)] = 30216, + [SMALL_STATE(808)] = 30288, + [SMALL_STATE(809)] = 30360, + [SMALL_STATE(810)] = 30432, + [SMALL_STATE(811)] = 30504, + [SMALL_STATE(812)] = 30574, + [SMALL_STATE(813)] = 30643, + [SMALL_STATE(814)] = 30712, + [SMALL_STATE(815)] = 30769, + [SMALL_STATE(816)] = 30838, + [SMALL_STATE(817)] = 30905, + [SMALL_STATE(818)] = 30954, + [SMALL_STATE(819)] = 31023, + [SMALL_STATE(820)] = 31092, + [SMALL_STATE(821)] = 31157, + [SMALL_STATE(822)] = 31214, + [SMALL_STATE(823)] = 31271, + [SMALL_STATE(824)] = 31340, + [SMALL_STATE(825)] = 31409, + [SMALL_STATE(826)] = 31478, + [SMALL_STATE(827)] = 31547, + [SMALL_STATE(828)] = 31616, + [SMALL_STATE(829)] = 31673, + [SMALL_STATE(830)] = 31742, + [SMALL_STATE(831)] = 31799, + [SMALL_STATE(832)] = 31862, + [SMALL_STATE(833)] = 31919, + [SMALL_STATE(834)] = 31976, + [SMALL_STATE(835)] = 32045, + [SMALL_STATE(836)] = 32114, + [SMALL_STATE(837)] = 32171, + [SMALL_STATE(838)] = 32240, + [SMALL_STATE(839)] = 32309, + [SMALL_STATE(840)] = 32378, + [SMALL_STATE(841)] = 32447, + [SMALL_STATE(842)] = 32516, + [SMALL_STATE(843)] = 32585, + [SMALL_STATE(844)] = 32654, + [SMALL_STATE(845)] = 32711, + [SMALL_STATE(846)] = 32768, + [SMALL_STATE(847)] = 32829, + [SMALL_STATE(848)] = 32888, + [SMALL_STATE(849)] = 32945, + [SMALL_STATE(850)] = 33002, + [SMALL_STATE(851)] = 33055, + [SMALL_STATE(852)] = 33118, + [SMALL_STATE(853)] = 33171, + [SMALL_STATE(854)] = 33222, + [SMALL_STATE(855)] = 33291, + [SMALL_STATE(856)] = 33360, + [SMALL_STATE(857)] = 33417, + [SMALL_STATE(858)] = 33486, + [SMALL_STATE(859)] = 33534, + [SMALL_STATE(860)] = 33582, + [SMALL_STATE(861)] = 33630, + [SMALL_STATE(862)] = 33678, + [SMALL_STATE(863)] = 33731, + [SMALL_STATE(864)] = 33768, + [SMALL_STATE(865)] = 33807, + [SMALL_STATE(866)] = 33860, + [SMALL_STATE(867)] = 33913, + [SMALL_STATE(868)] = 33966, + [SMALL_STATE(869)] = 34003, + [SMALL_STATE(870)] = 34040, + [SMALL_STATE(871)] = 34077, + [SMALL_STATE(872)] = 34114, + [SMALL_STATE(873)] = 34164, + [SMALL_STATE(874)] = 34200, + [SMALL_STATE(875)] = 34250, + [SMALL_STATE(876)] = 34300, + [SMALL_STATE(877)] = 34350, + [SMALL_STATE(878)] = 34400, + [SMALL_STATE(879)] = 34450, + [SMALL_STATE(880)] = 34500, + [SMALL_STATE(881)] = 34550, + [SMALL_STATE(882)] = 34600, + [SMALL_STATE(883)] = 34650, + [SMALL_STATE(884)] = 34681, + [SMALL_STATE(885)] = 34712, + [SMALL_STATE(886)] = 34743, + [SMALL_STATE(887)] = 34774, + [SMALL_STATE(888)] = 34805, + [SMALL_STATE(889)] = 34836, + [SMALL_STATE(890)] = 34867, + [SMALL_STATE(891)] = 34898, + [SMALL_STATE(892)] = 34931, + [SMALL_STATE(893)] = 34962, + [SMALL_STATE(894)] = 34993, + [SMALL_STATE(895)] = 35024, + [SMALL_STATE(896)] = 35055, + [SMALL_STATE(897)] = 35086, + [SMALL_STATE(898)] = 35117, + [SMALL_STATE(899)] = 35148, + [SMALL_STATE(900)] = 35179, + [SMALL_STATE(901)] = 35210, + [SMALL_STATE(902)] = 35241, + [SMALL_STATE(903)] = 35272, + [SMALL_STATE(904)] = 35303, + [SMALL_STATE(905)] = 35334, + [SMALL_STATE(906)] = 35365, + [SMALL_STATE(907)] = 35399, + [SMALL_STATE(908)] = 35454, + [SMALL_STATE(909)] = 35497, + [SMALL_STATE(910)] = 35540, + [SMALL_STATE(911)] = 35595, + [SMALL_STATE(912)] = 35628, + [SMALL_STATE(913)] = 35663, + [SMALL_STATE(914)] = 35709, + [SMALL_STATE(915)] = 35749, + [SMALL_STATE(916)] = 35777, + [SMALL_STATE(917)] = 35805, + [SMALL_STATE(918)] = 35833, + [SMALL_STATE(919)] = 35861, + [SMALL_STATE(920)] = 35901, + [SMALL_STATE(921)] = 35941, + [SMALL_STATE(922)] = 35975, + [SMALL_STATE(923)] = 36011, + [SMALL_STATE(924)] = 36051, + [SMALL_STATE(925)] = 36093, + [SMALL_STATE(926)] = 36137, + [SMALL_STATE(927)] = 36183, + [SMALL_STATE(928)] = 36231, + [SMALL_STATE(929)] = 36259, + [SMALL_STATE(930)] = 36291, + [SMALL_STATE(931)] = 36319, + [SMALL_STATE(932)] = 36347, + [SMALL_STATE(933)] = 36387, + [SMALL_STATE(934)] = 36429, + [SMALL_STATE(935)] = 36469, + [SMALL_STATE(936)] = 36509, + [SMALL_STATE(937)] = 36549, + [SMALL_STATE(938)] = 36589, + [SMALL_STATE(939)] = 36629, + [SMALL_STATE(940)] = 36669, + [SMALL_STATE(941)] = 36709, + [SMALL_STATE(942)] = 36749, + [SMALL_STATE(943)] = 36789, + [SMALL_STATE(944)] = 36829, + [SMALL_STATE(945)] = 36857, + [SMALL_STATE(946)] = 36885, + [SMALL_STATE(947)] = 36913, + [SMALL_STATE(948)] = 36953, + [SMALL_STATE(949)] = 36995, + [SMALL_STATE(950)] = 37043, + [SMALL_STATE(951)] = 37083, + [SMALL_STATE(952)] = 37123, + [SMALL_STATE(953)] = 37163, + [SMALL_STATE(954)] = 37203, + [SMALL_STATE(955)] = 37243, + [SMALL_STATE(956)] = 37283, + [SMALL_STATE(957)] = 37323, + [SMALL_STATE(958)] = 37363, + [SMALL_STATE(959)] = 37403, + [SMALL_STATE(960)] = 37443, + [SMALL_STATE(961)] = 37493, + [SMALL_STATE(962)] = 37535, + [SMALL_STATE(963)] = 37577, + [SMALL_STATE(964)] = 37619, + [SMALL_STATE(965)] = 37659, + [SMALL_STATE(966)] = 37699, + [SMALL_STATE(967)] = 37741, + [SMALL_STATE(968)] = 37781, + [SMALL_STATE(969)] = 37821, + [SMALL_STATE(970)] = 37861, + [SMALL_STATE(971)] = 37901, + [SMALL_STATE(972)] = 37941, + [SMALL_STATE(973)] = 37981, + [SMALL_STATE(974)] = 38021, + [SMALL_STATE(975)] = 38050, + [SMALL_STATE(976)] = 38095, + [SMALL_STATE(977)] = 38138, + [SMALL_STATE(978)] = 38165, + [SMALL_STATE(979)] = 38210, + [SMALL_STATE(980)] = 38237, + [SMALL_STATE(981)] = 38282, + [SMALL_STATE(982)] = 38309, + [SMALL_STATE(983)] = 38336, + [SMALL_STATE(984)] = 38363, + [SMALL_STATE(985)] = 38390, + [SMALL_STATE(986)] = 38439, + [SMALL_STATE(987)] = 38488, + [SMALL_STATE(988)] = 38529, + [SMALL_STATE(989)] = 38556, + [SMALL_STATE(990)] = 38583, + [SMALL_STATE(991)] = 38628, + [SMALL_STATE(992)] = 38673, + [SMALL_STATE(993)] = 38700, + [SMALL_STATE(994)] = 38741, + [SMALL_STATE(995)] = 38782, + [SMALL_STATE(996)] = 38827, + [SMALL_STATE(997)] = 38872, + [SMALL_STATE(998)] = 38913, + [SMALL_STATE(999)] = 38954, + [SMALL_STATE(1000)] = 38999, + [SMALL_STATE(1001)] = 39040, + [SMALL_STATE(1002)] = 39081, + [SMALL_STATE(1003)] = 39116, + [SMALL_STATE(1004)] = 39161, + [SMALL_STATE(1005)] = 39202, + [SMALL_STATE(1006)] = 39233, + [SMALL_STATE(1007)] = 39278, + [SMALL_STATE(1008)] = 39305, + [SMALL_STATE(1009)] = 39346, + [SMALL_STATE(1010)] = 39379, + [SMALL_STATE(1011)] = 39418, + [SMALL_STATE(1012)] = 39455, + [SMALL_STATE(1013)] = 39490, + [SMALL_STATE(1014)] = 39531, + [SMALL_STATE(1015)] = 39565, + [SMALL_STATE(1016)] = 39588, + [SMALL_STATE(1017)] = 39611, + [SMALL_STATE(1018)] = 39643, + [SMALL_STATE(1019)] = 39681, + [SMALL_STATE(1020)] = 39713, + [SMALL_STATE(1021)] = 39745, + [SMALL_STATE(1022)] = 39777, + [SMALL_STATE(1023)] = 39815, + [SMALL_STATE(1024)] = 39847, + [SMALL_STATE(1025)] = 39879, + [SMALL_STATE(1026)] = 39911, + [SMALL_STATE(1027)] = 39935, + [SMALL_STATE(1028)] = 39967, + [SMALL_STATE(1029)] = 39999, + [SMALL_STATE(1030)] = 40037, + [SMALL_STATE(1031)] = 40069, + [SMALL_STATE(1032)] = 40107, + [SMALL_STATE(1033)] = 40139, + [SMALL_STATE(1034)] = 40171, + [SMALL_STATE(1035)] = 40200, + [SMALL_STATE(1036)] = 40229, + [SMALL_STATE(1037)] = 40264, + [SMALL_STATE(1038)] = 40287, + [SMALL_STATE(1039)] = 40316, + [SMALL_STATE(1040)] = 40343, + [SMALL_STATE(1041)] = 40372, + [SMALL_STATE(1042)] = 40401, + [SMALL_STATE(1043)] = 40428, + [SMALL_STATE(1044)] = 40457, + [SMALL_STATE(1045)] = 40486, + [SMALL_STATE(1046)] = 40513, + [SMALL_STATE(1047)] = 40542, + [SMALL_STATE(1048)] = 40565, + [SMALL_STATE(1049)] = 40594, + [SMALL_STATE(1050)] = 40617, + [SMALL_STATE(1051)] = 40646, + [SMALL_STATE(1052)] = 40675, + [SMALL_STATE(1053)] = 40704, + [SMALL_STATE(1054)] = 40727, + [SMALL_STATE(1055)] = 40756, + [SMALL_STATE(1056)] = 40785, + [SMALL_STATE(1057)] = 40820, + [SMALL_STATE(1058)] = 40849, + [SMALL_STATE(1059)] = 40878, + [SMALL_STATE(1060)] = 40907, + [SMALL_STATE(1061)] = 40942, + [SMALL_STATE(1062)] = 40969, + [SMALL_STATE(1063)] = 41001, + [SMALL_STATE(1064)] = 41033, + [SMALL_STATE(1065)] = 41065, + [SMALL_STATE(1066)] = 41083, + [SMALL_STATE(1067)] = 41109, + [SMALL_STATE(1068)] = 41139, + [SMALL_STATE(1069)] = 41165, + [SMALL_STATE(1070)] = 41183, + [SMALL_STATE(1071)] = 41209, + [SMALL_STATE(1072)] = 41241, + [SMALL_STATE(1073)] = 41259, + [SMALL_STATE(1074)] = 41285, + [SMALL_STATE(1075)] = 41307, + [SMALL_STATE(1076)] = 41336, + [SMALL_STATE(1077)] = 41365, + [SMALL_STATE(1078)] = 41390, + [SMALL_STATE(1079)] = 41417, + [SMALL_STATE(1080)] = 41442, + [SMALL_STATE(1081)] = 41471, + [SMALL_STATE(1082)] = 41500, + [SMALL_STATE(1083)] = 41529, + [SMALL_STATE(1084)] = 41558, + [SMALL_STATE(1085)] = 41583, + [SMALL_STATE(1086)] = 41604, + [SMALL_STATE(1087)] = 41629, + [SMALL_STATE(1088)] = 41658, + [SMALL_STATE(1089)] = 41687, + [SMALL_STATE(1090)] = 41708, + [SMALL_STATE(1091)] = 41729, + [SMALL_STATE(1092)] = 41750, + [SMALL_STATE(1093)] = 41771, + [SMALL_STATE(1094)] = 41797, + [SMALL_STATE(1095)] = 41813, + [SMALL_STATE(1096)] = 41839, + [SMALL_STATE(1097)] = 41863, + [SMALL_STATE(1098)] = 41883, + [SMALL_STATE(1099)] = 41899, + [SMALL_STATE(1100)] = 41925, + [SMALL_STATE(1101)] = 41941, + [SMALL_STATE(1102)] = 41957, + [SMALL_STATE(1103)] = 41983, + [SMALL_STATE(1104)] = 41999, + [SMALL_STATE(1105)] = 42015, + [SMALL_STATE(1106)] = 42039, + [SMALL_STATE(1107)] = 42054, + [SMALL_STATE(1108)] = 42069, + [SMALL_STATE(1109)] = 42084, + [SMALL_STATE(1110)] = 42099, + [SMALL_STATE(1111)] = 42122, + [SMALL_STATE(1112)] = 42145, + [SMALL_STATE(1113)] = 42160, + [SMALL_STATE(1114)] = 42175, + [SMALL_STATE(1115)] = 42198, + [SMALL_STATE(1116)] = 42213, + [SMALL_STATE(1117)] = 42228, + [SMALL_STATE(1118)] = 42246, + [SMALL_STATE(1119)] = 42260, + [SMALL_STATE(1120)] = 42278, + [SMALL_STATE(1121)] = 42296, + [SMALL_STATE(1122)] = 42310, + [SMALL_STATE(1123)] = 42324, + [SMALL_STATE(1124)] = 42342, + [SMALL_STATE(1125)] = 42360, + [SMALL_STATE(1126)] = 42378, + [SMALL_STATE(1127)] = 42392, + [SMALL_STATE(1128)] = 42406, + [SMALL_STATE(1129)] = 42424, + [SMALL_STATE(1130)] = 42438, + [SMALL_STATE(1131)] = 42456, + [SMALL_STATE(1132)] = 42470, + [SMALL_STATE(1133)] = 42484, + [SMALL_STATE(1134)] = 42495, + [SMALL_STATE(1135)] = 42506, + [SMALL_STATE(1136)] = 42517, + [SMALL_STATE(1137)] = 42528, + [SMALL_STATE(1138)] = 42547, + [SMALL_STATE(1139)] = 42564, + [SMALL_STATE(1140)] = 42575, + [SMALL_STATE(1141)] = 42586, + [SMALL_STATE(1142)] = 42597, + [SMALL_STATE(1143)] = 42616, + [SMALL_STATE(1144)] = 42627, + [SMALL_STATE(1145)] = 42638, + [SMALL_STATE(1146)] = 42649, + [SMALL_STATE(1147)] = 42666, + [SMALL_STATE(1148)] = 42677, + [SMALL_STATE(1149)] = 42688, + [SMALL_STATE(1150)] = 42704, + [SMALL_STATE(1151)] = 42720, + [SMALL_STATE(1152)] = 42736, + [SMALL_STATE(1153)] = 42750, + [SMALL_STATE(1154)] = 42766, + [SMALL_STATE(1155)] = 42782, + [SMALL_STATE(1156)] = 42798, + [SMALL_STATE(1157)] = 42814, + [SMALL_STATE(1158)] = 42830, + [SMALL_STATE(1159)] = 42846, + [SMALL_STATE(1160)] = 42862, + [SMALL_STATE(1161)] = 42878, + [SMALL_STATE(1162)] = 42894, + [SMALL_STATE(1163)] = 42910, + [SMALL_STATE(1164)] = 42926, + [SMALL_STATE(1165)] = 42942, + [SMALL_STATE(1166)] = 42958, + [SMALL_STATE(1167)] = 42971, + [SMALL_STATE(1168)] = 42980, + [SMALL_STATE(1169)] = 42993, + [SMALL_STATE(1170)] = 43002, + [SMALL_STATE(1171)] = 43015, + [SMALL_STATE(1172)] = 43028, + [SMALL_STATE(1173)] = 43041, + [SMALL_STATE(1174)] = 43054, + [SMALL_STATE(1175)] = 43067, + [SMALL_STATE(1176)] = 43080, + [SMALL_STATE(1177)] = 43093, + [SMALL_STATE(1178)] = 43106, + [SMALL_STATE(1179)] = 43119, + [SMALL_STATE(1180)] = 43132, + [SMALL_STATE(1181)] = 43145, + [SMALL_STATE(1182)] = 43158, + [SMALL_STATE(1183)] = 43171, + [SMALL_STATE(1184)] = 43184, + [SMALL_STATE(1185)] = 43197, + [SMALL_STATE(1186)] = 43210, + [SMALL_STATE(1187)] = 43221, + [SMALL_STATE(1188)] = 43234, + [SMALL_STATE(1189)] = 43247, + [SMALL_STATE(1190)] = 43260, + [SMALL_STATE(1191)] = 43273, + [SMALL_STATE(1192)] = 43286, + [SMALL_STATE(1193)] = 43299, + [SMALL_STATE(1194)] = 43312, + [SMALL_STATE(1195)] = 43325, + [SMALL_STATE(1196)] = 43338, + [SMALL_STATE(1197)] = 43351, + [SMALL_STATE(1198)] = 43364, + [SMALL_STATE(1199)] = 43377, + [SMALL_STATE(1200)] = 43390, + [SMALL_STATE(1201)] = 43403, + [SMALL_STATE(1202)] = 43416, + [SMALL_STATE(1203)] = 43429, + [SMALL_STATE(1204)] = 43442, + [SMALL_STATE(1205)] = 43455, + [SMALL_STATE(1206)] = 43468, + [SMALL_STATE(1207)] = 43481, + [SMALL_STATE(1208)] = 43494, + [SMALL_STATE(1209)] = 43507, + [SMALL_STATE(1210)] = 43520, + [SMALL_STATE(1211)] = 43533, + [SMALL_STATE(1212)] = 43546, + [SMALL_STATE(1213)] = 43557, + [SMALL_STATE(1214)] = 43570, + [SMALL_STATE(1215)] = 43583, + [SMALL_STATE(1216)] = 43596, + [SMALL_STATE(1217)] = 43609, + [SMALL_STATE(1218)] = 43622, + [SMALL_STATE(1219)] = 43635, + [SMALL_STATE(1220)] = 43648, + [SMALL_STATE(1221)] = 43661, + [SMALL_STATE(1222)] = 43674, + [SMALL_STATE(1223)] = 43687, + [SMALL_STATE(1224)] = 43700, + [SMALL_STATE(1225)] = 43713, + [SMALL_STATE(1226)] = 43726, + [SMALL_STATE(1227)] = 43739, + [SMALL_STATE(1228)] = 43752, + [SMALL_STATE(1229)] = 43765, + [SMALL_STATE(1230)] = 43778, + [SMALL_STATE(1231)] = 43791, + [SMALL_STATE(1232)] = 43804, + [SMALL_STATE(1233)] = 43817, + [SMALL_STATE(1234)] = 43830, + [SMALL_STATE(1235)] = 43843, + [SMALL_STATE(1236)] = 43856, + [SMALL_STATE(1237)] = 43869, + [SMALL_STATE(1238)] = 43882, + [SMALL_STATE(1239)] = 43895, + [SMALL_STATE(1240)] = 43903, + [SMALL_STATE(1241)] = 43913, + [SMALL_STATE(1242)] = 43923, + [SMALL_STATE(1243)] = 43931, + [SMALL_STATE(1244)] = 43941, + [SMALL_STATE(1245)] = 43951, + [SMALL_STATE(1246)] = 43959, + [SMALL_STATE(1247)] = 43969, + [SMALL_STATE(1248)] = 43977, [SMALL_STATE(1249)] = 43985, - [SMALL_STATE(1250)] = 43995, - [SMALL_STATE(1251)] = 44005, - [SMALL_STATE(1252)] = 44013, - [SMALL_STATE(1253)] = 44023, - [SMALL_STATE(1254)] = 44033, - [SMALL_STATE(1255)] = 44043, - [SMALL_STATE(1256)] = 44053, - [SMALL_STATE(1257)] = 44061, - [SMALL_STATE(1258)] = 44069, - [SMALL_STATE(1259)] = 44079, - [SMALL_STATE(1260)] = 44089, - [SMALL_STATE(1261)] = 44099, - [SMALL_STATE(1262)] = 44109, - [SMALL_STATE(1263)] = 44117, - [SMALL_STATE(1264)] = 44127, - [SMALL_STATE(1265)] = 44135, - [SMALL_STATE(1266)] = 44143, - [SMALL_STATE(1267)] = 44153, + [SMALL_STATE(1250)] = 43993, + [SMALL_STATE(1251)] = 44001, + [SMALL_STATE(1252)] = 44011, + [SMALL_STATE(1253)] = 44021, + [SMALL_STATE(1254)] = 44031, + [SMALL_STATE(1255)] = 44041, + [SMALL_STATE(1256)] = 44049, + [SMALL_STATE(1257)] = 44059, + [SMALL_STATE(1258)] = 44067, + [SMALL_STATE(1259)] = 44075, + [SMALL_STATE(1260)] = 44085, + [SMALL_STATE(1261)] = 44095, + [SMALL_STATE(1262)] = 44105, + [SMALL_STATE(1263)] = 44115, + [SMALL_STATE(1264)] = 44123, + [SMALL_STATE(1265)] = 44131, + [SMALL_STATE(1266)] = 44141, + [SMALL_STATE(1267)] = 44151, [SMALL_STATE(1268)] = 44161, - [SMALL_STATE(1269)] = 44169, - [SMALL_STATE(1270)] = 44177, - [SMALL_STATE(1271)] = 44187, - [SMALL_STATE(1272)] = 44197, + [SMALL_STATE(1269)] = 44171, + [SMALL_STATE(1270)] = 44179, + [SMALL_STATE(1271)] = 44189, + [SMALL_STATE(1272)] = 44199, [SMALL_STATE(1273)] = 44207, - [SMALL_STATE(1274)] = 44217, - [SMALL_STATE(1275)] = 44227, - [SMALL_STATE(1276)] = 44237, - [SMALL_STATE(1277)] = 44247, - [SMALL_STATE(1278)] = 44257, - [SMALL_STATE(1279)] = 44267, - [SMALL_STATE(1280)] = 44277, - [SMALL_STATE(1281)] = 44287, - [SMALL_STATE(1282)] = 44297, - [SMALL_STATE(1283)] = 44307, - [SMALL_STATE(1284)] = 44317, - [SMALL_STATE(1285)] = 44327, - [SMALL_STATE(1286)] = 44337, - [SMALL_STATE(1287)] = 44345, - [SMALL_STATE(1288)] = 44353, + [SMALL_STATE(1274)] = 44215, + [SMALL_STATE(1275)] = 44225, + [SMALL_STATE(1276)] = 44235, + [SMALL_STATE(1277)] = 44243, + [SMALL_STATE(1278)] = 44253, + [SMALL_STATE(1279)] = 44263, + [SMALL_STATE(1280)] = 44273, + [SMALL_STATE(1281)] = 44283, + [SMALL_STATE(1282)] = 44293, + [SMALL_STATE(1283)] = 44303, + [SMALL_STATE(1284)] = 44313, + [SMALL_STATE(1285)] = 44323, + [SMALL_STATE(1286)] = 44331, + [SMALL_STATE(1287)] = 44341, + [SMALL_STATE(1288)] = 44351, [SMALL_STATE(1289)] = 44361, - [SMALL_STATE(1290)] = 44371, + [SMALL_STATE(1290)] = 44369, [SMALL_STATE(1291)] = 44379, - [SMALL_STATE(1292)] = 44387, - [SMALL_STATE(1293)] = 44397, - [SMALL_STATE(1294)] = 44404, - [SMALL_STATE(1295)] = 44411, - [SMALL_STATE(1296)] = 44418, - [SMALL_STATE(1297)] = 44425, - [SMALL_STATE(1298)] = 44432, - [SMALL_STATE(1299)] = 44439, - [SMALL_STATE(1300)] = 44446, - [SMALL_STATE(1301)] = 44453, - [SMALL_STATE(1302)] = 44460, - [SMALL_STATE(1303)] = 44467, - [SMALL_STATE(1304)] = 44474, - [SMALL_STATE(1305)] = 44481, - [SMALL_STATE(1306)] = 44488, - [SMALL_STATE(1307)] = 44495, - [SMALL_STATE(1308)] = 44502, - [SMALL_STATE(1309)] = 44509, - [SMALL_STATE(1310)] = 44516, - [SMALL_STATE(1311)] = 44523, - [SMALL_STATE(1312)] = 44530, - [SMALL_STATE(1313)] = 44537, - [SMALL_STATE(1314)] = 44544, - [SMALL_STATE(1315)] = 44551, - [SMALL_STATE(1316)] = 44558, - [SMALL_STATE(1317)] = 44565, - [SMALL_STATE(1318)] = 44572, - [SMALL_STATE(1319)] = 44579, - [SMALL_STATE(1320)] = 44586, - [SMALL_STATE(1321)] = 44593, - [SMALL_STATE(1322)] = 44600, - [SMALL_STATE(1323)] = 44607, - [SMALL_STATE(1324)] = 44614, - [SMALL_STATE(1325)] = 44621, - [SMALL_STATE(1326)] = 44628, - [SMALL_STATE(1327)] = 44635, - [SMALL_STATE(1328)] = 44642, - [SMALL_STATE(1329)] = 44649, - [SMALL_STATE(1330)] = 44656, - [SMALL_STATE(1331)] = 44663, - [SMALL_STATE(1332)] = 44670, - [SMALL_STATE(1333)] = 44677, - [SMALL_STATE(1334)] = 44684, - [SMALL_STATE(1335)] = 44691, - [SMALL_STATE(1336)] = 44698, - [SMALL_STATE(1337)] = 44705, - [SMALL_STATE(1338)] = 44712, - [SMALL_STATE(1339)] = 44719, - [SMALL_STATE(1340)] = 44726, - [SMALL_STATE(1341)] = 44733, - [SMALL_STATE(1342)] = 44740, - [SMALL_STATE(1343)] = 44747, - [SMALL_STATE(1344)] = 44754, - [SMALL_STATE(1345)] = 44761, - [SMALL_STATE(1346)] = 44768, - [SMALL_STATE(1347)] = 44775, - [SMALL_STATE(1348)] = 44782, - [SMALL_STATE(1349)] = 44789, - [SMALL_STATE(1350)] = 44796, - [SMALL_STATE(1351)] = 44803, - [SMALL_STATE(1352)] = 44810, - [SMALL_STATE(1353)] = 44817, - [SMALL_STATE(1354)] = 44824, - [SMALL_STATE(1355)] = 44831, - [SMALL_STATE(1356)] = 44838, - [SMALL_STATE(1357)] = 44845, - [SMALL_STATE(1358)] = 44852, - [SMALL_STATE(1359)] = 44859, - [SMALL_STATE(1360)] = 44866, - [SMALL_STATE(1361)] = 44873, - [SMALL_STATE(1362)] = 44880, - [SMALL_STATE(1363)] = 44887, - [SMALL_STATE(1364)] = 44894, - [SMALL_STATE(1365)] = 44901, - [SMALL_STATE(1366)] = 44908, - [SMALL_STATE(1367)] = 44915, - [SMALL_STATE(1368)] = 44922, - [SMALL_STATE(1369)] = 44929, - [SMALL_STATE(1370)] = 44936, - [SMALL_STATE(1371)] = 44943, - [SMALL_STATE(1372)] = 44950, - [SMALL_STATE(1373)] = 44957, - [SMALL_STATE(1374)] = 44964, - [SMALL_STATE(1375)] = 44971, - [SMALL_STATE(1376)] = 44978, - [SMALL_STATE(1377)] = 44985, - [SMALL_STATE(1378)] = 44992, - [SMALL_STATE(1379)] = 44999, - [SMALL_STATE(1380)] = 45006, - [SMALL_STATE(1381)] = 45013, - [SMALL_STATE(1382)] = 45020, - [SMALL_STATE(1383)] = 45027, - [SMALL_STATE(1384)] = 45034, - [SMALL_STATE(1385)] = 45041, - [SMALL_STATE(1386)] = 45048, - [SMALL_STATE(1387)] = 45055, - [SMALL_STATE(1388)] = 45062, - [SMALL_STATE(1389)] = 45069, - [SMALL_STATE(1390)] = 45076, - [SMALL_STATE(1391)] = 45083, - [SMALL_STATE(1392)] = 45090, - [SMALL_STATE(1393)] = 45097, - [SMALL_STATE(1394)] = 45104, - [SMALL_STATE(1395)] = 45111, - [SMALL_STATE(1396)] = 45118, - [SMALL_STATE(1397)] = 45125, - [SMALL_STATE(1398)] = 45132, - [SMALL_STATE(1399)] = 45139, - [SMALL_STATE(1400)] = 45146, - [SMALL_STATE(1401)] = 45153, - [SMALL_STATE(1402)] = 45160, - [SMALL_STATE(1403)] = 45167, - [SMALL_STATE(1404)] = 45174, - [SMALL_STATE(1405)] = 45181, - [SMALL_STATE(1406)] = 45188, - [SMALL_STATE(1407)] = 45195, - [SMALL_STATE(1408)] = 45202, - [SMALL_STATE(1409)] = 45209, - [SMALL_STATE(1410)] = 45216, - [SMALL_STATE(1411)] = 45223, - [SMALL_STATE(1412)] = 45230, - [SMALL_STATE(1413)] = 45237, - [SMALL_STATE(1414)] = 45244, - [SMALL_STATE(1415)] = 45251, - [SMALL_STATE(1416)] = 45258, - [SMALL_STATE(1417)] = 45265, - [SMALL_STATE(1418)] = 45272, - [SMALL_STATE(1419)] = 45279, - [SMALL_STATE(1420)] = 45286, - [SMALL_STATE(1421)] = 45293, - [SMALL_STATE(1422)] = 45300, - [SMALL_STATE(1423)] = 45307, - [SMALL_STATE(1424)] = 45314, - [SMALL_STATE(1425)] = 45321, - [SMALL_STATE(1426)] = 45328, - [SMALL_STATE(1427)] = 45335, - [SMALL_STATE(1428)] = 45342, - [SMALL_STATE(1429)] = 45349, - [SMALL_STATE(1430)] = 45356, - [SMALL_STATE(1431)] = 45363, - [SMALL_STATE(1432)] = 45370, - [SMALL_STATE(1433)] = 45377, - [SMALL_STATE(1434)] = 45384, - [SMALL_STATE(1435)] = 45391, - [SMALL_STATE(1436)] = 45398, - [SMALL_STATE(1437)] = 45405, - [SMALL_STATE(1438)] = 45412, - [SMALL_STATE(1439)] = 45419, - [SMALL_STATE(1440)] = 45426, - [SMALL_STATE(1441)] = 45433, - [SMALL_STATE(1442)] = 45440, - [SMALL_STATE(1443)] = 45447, - [SMALL_STATE(1444)] = 45454, - [SMALL_STATE(1445)] = 45461, - [SMALL_STATE(1446)] = 45468, - [SMALL_STATE(1447)] = 45475, - [SMALL_STATE(1448)] = 45482, - [SMALL_STATE(1449)] = 45489, - [SMALL_STATE(1450)] = 45496, - [SMALL_STATE(1451)] = 45503, - [SMALL_STATE(1452)] = 45510, - [SMALL_STATE(1453)] = 45517, - [SMALL_STATE(1454)] = 45524, - [SMALL_STATE(1455)] = 45531, - [SMALL_STATE(1456)] = 45538, - [SMALL_STATE(1457)] = 45545, - [SMALL_STATE(1458)] = 45552, - [SMALL_STATE(1459)] = 45559, - [SMALL_STATE(1460)] = 45566, - [SMALL_STATE(1461)] = 45573, - [SMALL_STATE(1462)] = 45580, - [SMALL_STATE(1463)] = 45587, - [SMALL_STATE(1464)] = 45594, - [SMALL_STATE(1465)] = 45601, - [SMALL_STATE(1466)] = 45608, - [SMALL_STATE(1467)] = 45615, - [SMALL_STATE(1468)] = 45622, - [SMALL_STATE(1469)] = 45629, - [SMALL_STATE(1470)] = 45636, - [SMALL_STATE(1471)] = 45643, - [SMALL_STATE(1472)] = 45650, - [SMALL_STATE(1473)] = 45657, - [SMALL_STATE(1474)] = 45664, - [SMALL_STATE(1475)] = 45671, - [SMALL_STATE(1476)] = 45678, - [SMALL_STATE(1477)] = 45685, - [SMALL_STATE(1478)] = 45692, - [SMALL_STATE(1479)] = 45699, - [SMALL_STATE(1480)] = 45706, - [SMALL_STATE(1481)] = 45713, - [SMALL_STATE(1482)] = 45720, - [SMALL_STATE(1483)] = 45727, - [SMALL_STATE(1484)] = 45734, - [SMALL_STATE(1485)] = 45741, - [SMALL_STATE(1486)] = 45748, - [SMALL_STATE(1487)] = 45755, - [SMALL_STATE(1488)] = 45762, - [SMALL_STATE(1489)] = 45769, - [SMALL_STATE(1490)] = 45776, - [SMALL_STATE(1491)] = 45783, - [SMALL_STATE(1492)] = 45790, - [SMALL_STATE(1493)] = 45797, - [SMALL_STATE(1494)] = 45804, + [SMALL_STATE(1292)] = 44389, + [SMALL_STATE(1293)] = 44399, + [SMALL_STATE(1294)] = 44409, + [SMALL_STATE(1295)] = 44419, + [SMALL_STATE(1296)] = 44429, + [SMALL_STATE(1297)] = 44439, + [SMALL_STATE(1298)] = 44447, + [SMALL_STATE(1299)] = 44457, + [SMALL_STATE(1300)] = 44467, + [SMALL_STATE(1301)] = 44477, + [SMALL_STATE(1302)] = 44485, + [SMALL_STATE(1303)] = 44492, + [SMALL_STATE(1304)] = 44499, + [SMALL_STATE(1305)] = 44506, + [SMALL_STATE(1306)] = 44513, + [SMALL_STATE(1307)] = 44520, + [SMALL_STATE(1308)] = 44527, + [SMALL_STATE(1309)] = 44534, + [SMALL_STATE(1310)] = 44541, + [SMALL_STATE(1311)] = 44548, + [SMALL_STATE(1312)] = 44555, + [SMALL_STATE(1313)] = 44562, + [SMALL_STATE(1314)] = 44569, + [SMALL_STATE(1315)] = 44576, + [SMALL_STATE(1316)] = 44583, + [SMALL_STATE(1317)] = 44590, + [SMALL_STATE(1318)] = 44597, + [SMALL_STATE(1319)] = 44604, + [SMALL_STATE(1320)] = 44611, + [SMALL_STATE(1321)] = 44618, + [SMALL_STATE(1322)] = 44625, + [SMALL_STATE(1323)] = 44632, + [SMALL_STATE(1324)] = 44639, + [SMALL_STATE(1325)] = 44646, + [SMALL_STATE(1326)] = 44653, + [SMALL_STATE(1327)] = 44660, + [SMALL_STATE(1328)] = 44667, + [SMALL_STATE(1329)] = 44674, + [SMALL_STATE(1330)] = 44681, + [SMALL_STATE(1331)] = 44688, + [SMALL_STATE(1332)] = 44695, + [SMALL_STATE(1333)] = 44702, + [SMALL_STATE(1334)] = 44709, + [SMALL_STATE(1335)] = 44716, + [SMALL_STATE(1336)] = 44723, + [SMALL_STATE(1337)] = 44730, + [SMALL_STATE(1338)] = 44737, + [SMALL_STATE(1339)] = 44744, + [SMALL_STATE(1340)] = 44751, + [SMALL_STATE(1341)] = 44758, + [SMALL_STATE(1342)] = 44765, + [SMALL_STATE(1343)] = 44772, + [SMALL_STATE(1344)] = 44779, + [SMALL_STATE(1345)] = 44786, + [SMALL_STATE(1346)] = 44793, + [SMALL_STATE(1347)] = 44800, + [SMALL_STATE(1348)] = 44807, + [SMALL_STATE(1349)] = 44814, + [SMALL_STATE(1350)] = 44821, + [SMALL_STATE(1351)] = 44828, + [SMALL_STATE(1352)] = 44835, + [SMALL_STATE(1353)] = 44842, + [SMALL_STATE(1354)] = 44849, + [SMALL_STATE(1355)] = 44856, + [SMALL_STATE(1356)] = 44863, + [SMALL_STATE(1357)] = 44870, + [SMALL_STATE(1358)] = 44877, + [SMALL_STATE(1359)] = 44884, + [SMALL_STATE(1360)] = 44891, + [SMALL_STATE(1361)] = 44898, + [SMALL_STATE(1362)] = 44905, + [SMALL_STATE(1363)] = 44912, + [SMALL_STATE(1364)] = 44919, + [SMALL_STATE(1365)] = 44926, + [SMALL_STATE(1366)] = 44933, + [SMALL_STATE(1367)] = 44940, + [SMALL_STATE(1368)] = 44947, + [SMALL_STATE(1369)] = 44954, + [SMALL_STATE(1370)] = 44961, + [SMALL_STATE(1371)] = 44968, + [SMALL_STATE(1372)] = 44975, + [SMALL_STATE(1373)] = 44982, + [SMALL_STATE(1374)] = 44989, + [SMALL_STATE(1375)] = 44996, + [SMALL_STATE(1376)] = 45003, + [SMALL_STATE(1377)] = 45010, + [SMALL_STATE(1378)] = 45017, + [SMALL_STATE(1379)] = 45024, + [SMALL_STATE(1380)] = 45031, + [SMALL_STATE(1381)] = 45038, + [SMALL_STATE(1382)] = 45045, + [SMALL_STATE(1383)] = 45052, + [SMALL_STATE(1384)] = 45059, + [SMALL_STATE(1385)] = 45066, + [SMALL_STATE(1386)] = 45073, + [SMALL_STATE(1387)] = 45080, + [SMALL_STATE(1388)] = 45087, + [SMALL_STATE(1389)] = 45094, + [SMALL_STATE(1390)] = 45101, + [SMALL_STATE(1391)] = 45108, + [SMALL_STATE(1392)] = 45115, + [SMALL_STATE(1393)] = 45122, + [SMALL_STATE(1394)] = 45129, + [SMALL_STATE(1395)] = 45136, + [SMALL_STATE(1396)] = 45143, + [SMALL_STATE(1397)] = 45150, + [SMALL_STATE(1398)] = 45157, + [SMALL_STATE(1399)] = 45164, + [SMALL_STATE(1400)] = 45171, + [SMALL_STATE(1401)] = 45178, + [SMALL_STATE(1402)] = 45185, + [SMALL_STATE(1403)] = 45192, + [SMALL_STATE(1404)] = 45199, + [SMALL_STATE(1405)] = 45206, + [SMALL_STATE(1406)] = 45213, + [SMALL_STATE(1407)] = 45220, + [SMALL_STATE(1408)] = 45227, + [SMALL_STATE(1409)] = 45234, + [SMALL_STATE(1410)] = 45241, + [SMALL_STATE(1411)] = 45248, + [SMALL_STATE(1412)] = 45255, + [SMALL_STATE(1413)] = 45262, + [SMALL_STATE(1414)] = 45269, + [SMALL_STATE(1415)] = 45276, + [SMALL_STATE(1416)] = 45283, + [SMALL_STATE(1417)] = 45290, + [SMALL_STATE(1418)] = 45297, + [SMALL_STATE(1419)] = 45304, + [SMALL_STATE(1420)] = 45311, + [SMALL_STATE(1421)] = 45318, + [SMALL_STATE(1422)] = 45325, + [SMALL_STATE(1423)] = 45332, + [SMALL_STATE(1424)] = 45339, + [SMALL_STATE(1425)] = 45346, + [SMALL_STATE(1426)] = 45353, + [SMALL_STATE(1427)] = 45360, + [SMALL_STATE(1428)] = 45367, + [SMALL_STATE(1429)] = 45374, + [SMALL_STATE(1430)] = 45381, + [SMALL_STATE(1431)] = 45388, + [SMALL_STATE(1432)] = 45395, + [SMALL_STATE(1433)] = 45402, + [SMALL_STATE(1434)] = 45409, + [SMALL_STATE(1435)] = 45416, + [SMALL_STATE(1436)] = 45423, + [SMALL_STATE(1437)] = 45430, + [SMALL_STATE(1438)] = 45437, + [SMALL_STATE(1439)] = 45444, + [SMALL_STATE(1440)] = 45451, + [SMALL_STATE(1441)] = 45458, + [SMALL_STATE(1442)] = 45465, + [SMALL_STATE(1443)] = 45472, + [SMALL_STATE(1444)] = 45479, + [SMALL_STATE(1445)] = 45486, + [SMALL_STATE(1446)] = 45493, + [SMALL_STATE(1447)] = 45500, + [SMALL_STATE(1448)] = 45507, + [SMALL_STATE(1449)] = 45514, + [SMALL_STATE(1450)] = 45521, + [SMALL_STATE(1451)] = 45528, + [SMALL_STATE(1452)] = 45535, + [SMALL_STATE(1453)] = 45542, + [SMALL_STATE(1454)] = 45549, + [SMALL_STATE(1455)] = 45556, + [SMALL_STATE(1456)] = 45563, + [SMALL_STATE(1457)] = 45570, + [SMALL_STATE(1458)] = 45577, + [SMALL_STATE(1459)] = 45584, + [SMALL_STATE(1460)] = 45591, + [SMALL_STATE(1461)] = 45598, + [SMALL_STATE(1462)] = 45605, + [SMALL_STATE(1463)] = 45612, + [SMALL_STATE(1464)] = 45619, + [SMALL_STATE(1465)] = 45626, + [SMALL_STATE(1466)] = 45633, + [SMALL_STATE(1467)] = 45640, + [SMALL_STATE(1468)] = 45647, + [SMALL_STATE(1469)] = 45654, + [SMALL_STATE(1470)] = 45661, + [SMALL_STATE(1471)] = 45668, + [SMALL_STATE(1472)] = 45675, + [SMALL_STATE(1473)] = 45682, + [SMALL_STATE(1474)] = 45689, + [SMALL_STATE(1475)] = 45696, + [SMALL_STATE(1476)] = 45703, + [SMALL_STATE(1477)] = 45710, + [SMALL_STATE(1478)] = 45717, + [SMALL_STATE(1479)] = 45724, + [SMALL_STATE(1480)] = 45731, + [SMALL_STATE(1481)] = 45738, + [SMALL_STATE(1482)] = 45745, + [SMALL_STATE(1483)] = 45752, + [SMALL_STATE(1484)] = 45759, + [SMALL_STATE(1485)] = 45766, + [SMALL_STATE(1486)] = 45773, + [SMALL_STATE(1487)] = 45780, + [SMALL_STATE(1488)] = 45787, + [SMALL_STATE(1489)] = 45794, + [SMALL_STATE(1490)] = 45801, + [SMALL_STATE(1491)] = 45808, + [SMALL_STATE(1492)] = 45815, + [SMALL_STATE(1493)] = 45822, + [SMALL_STATE(1494)] = 45829, + [SMALL_STATE(1495)] = 45836, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -84181,1664 +84313,1669 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(417), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1080), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(949), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(412), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1085), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1402), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1402), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1292), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(381), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(514), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(514), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(581), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(88), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(883), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1489), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1283), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(901), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(692), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(886), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1176), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1146), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1144), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1285), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1280), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(520), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1407), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1275), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(130), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1492), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(469), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1404), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1408), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(523), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(525), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1471), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1470), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(595), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1251), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1160), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(595), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1403), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1298), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(373), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(508), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(508), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(509), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(83), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(881), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(743), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1487), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1296), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1484), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(902), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(699), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(663), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(780), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(899), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1178), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1142), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1137), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1294), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1288), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(532), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1421), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1292), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(166), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1493), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(447), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1418), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1416), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1409), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(514), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1465), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1463), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(600), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1164), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(600), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1082), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1428), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1493), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1231), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(150), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(879), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(732), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1263), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1266), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(519), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1478), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(189), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1476), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(473), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1473), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1472), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1074), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(932), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1430), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1276), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(132), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(877), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(737), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(567), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1324), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(305), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1494), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(478), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1333), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1335), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(418), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1088), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1336), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(943), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1277), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(272), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(878), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(736), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1289), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(540), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1415), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1258), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(131), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1490), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(479), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1417), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1418), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1343), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(581), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(883), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(692), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1489), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1283), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(886), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1176), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1144), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1285), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1280), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1275), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(130), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1492), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(469), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1405), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1404), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1408), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(523), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(525), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1471), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1470), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(595), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1251), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1160), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(595), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(414), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(878), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1289), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1258), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(131), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1490), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(479), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1417), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1418), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1343), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(402), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(132), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(877), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1244), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1245), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(305), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1494), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(478), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1333), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(421), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(150), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(879), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1263), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1270), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(189), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1476), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(473), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1473), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1472), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(417), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1092), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1494), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(919), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1490), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1278), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(204), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(876), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(704), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(512), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1259), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(258), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1471), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(446), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1469), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1467), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1466), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1090), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(932), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1291), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(201), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(875), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(702), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1271), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(527), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1353), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(280), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1495), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(478), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1351), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1350), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1089), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(954), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1338), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(304), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(878), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(551), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1394), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1491), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(475), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1375), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1382), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1344), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(416), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(373), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(881), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(699), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1487), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1296), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1484), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(663), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(780), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(899), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1178), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1142), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1137), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1294), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1288), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1292), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(166), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1493), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(447), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1418), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1416), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1409), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1465), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1463), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(600), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1164), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(600), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(410), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(304), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(878), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1270), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1240), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1241), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1491), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(475), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1375), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1382), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1344), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(204), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(876), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1262), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1259), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(258), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1471), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(446), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1469), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1467), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1466), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(419), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(201), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(875), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1271), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1265), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(280), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1495), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(478), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1351), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1350), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 80), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 80), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 86), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 86), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 85), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 85), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 84), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 84), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 81), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 81), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 85), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 85), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 84), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 84), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 73), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 73), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 72), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 72), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 83), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 83), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 64), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 64), [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 72), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 72), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 70), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 70), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 63), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 63), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 60), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 60), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 56), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 56), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 67), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 67), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 55), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 55), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 54), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 54), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 86), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 86), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 87), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 87), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 60), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 60), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 88), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 88), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 82), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 82), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 80), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 80), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 89), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 89), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 81), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 81), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 50), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 50), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 74), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 74), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 65), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 65), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 61), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 61), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 69), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 69), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 52), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 52), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 55), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 55), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 56), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 56), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 57), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 57), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(629), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(514), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(514), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(581), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(132), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1261), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1244), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1248), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(567), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1324), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1245), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(305), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1494), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(478), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1333), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1335), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1434), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(523), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(525), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1471), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1470), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(595), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1251), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1160), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(595), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(626), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(150), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(24), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1263), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1266), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(519), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1478), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1270), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(189), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1476), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(473), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1474), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1473), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1472), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(628), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(88), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(21), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1285), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1280), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(520), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1407), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1275), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(130), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1492), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(469), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1405), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1404), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1408), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1289), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(540), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1415), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1258), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(131), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1490), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(479), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1417), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1418), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1343), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(629), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(373), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(508), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(508), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(509), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(204), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1274), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1262), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(512), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1474), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1259), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(258), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1471), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(446), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1469), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1467), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1466), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(513), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(514), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1465), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1463), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(600), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1247), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1164), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(600), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(83), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(26), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1294), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1288), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(532), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1421), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1292), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(166), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1493), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(447), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1418), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1416), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1409), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(626), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(201), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1271), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1265), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1353), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1256), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(280), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1495), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(478), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1351), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1350), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1435), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(628), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(304), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1270), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1240), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(551), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1394), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1241), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(171), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1491), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(475), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1375), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1382), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1344), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1471] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(869), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(887), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1451), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(952), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1485] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(865), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(891), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1452), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(951), [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1369), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1279), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(692), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1489), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1486), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(687), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(749), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(886), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1176), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1146), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1144), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1452), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(930), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1416), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1282), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1429), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(969), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1396), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1242), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1370), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(699), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1487), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1287), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1484), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(663), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(780), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(899), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1178), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1142), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1137), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1430), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(958), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1310), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1252), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1453), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(947), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1417), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1299), [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1160), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1164), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 73), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 73), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 54), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 54), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 53), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 53), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 68), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 68), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 75), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 75), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 66), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 66), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(692), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1489), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1274), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1486), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(687), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(699), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1487), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1287), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1484), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(663), [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(660), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 55), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 55), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 67), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 67), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 56), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 56), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(723), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(894), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 76), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 61), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(687), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(869), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 69), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 69), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 79), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 79), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 57), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 57), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 56), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 56), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 50), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 50), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(739), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 49), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 78), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(890), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 62), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(663), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 46), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 46), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(865), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 63), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 63), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2456] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(869), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1016), - [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1015), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1489), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 74), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1283), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 74), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 74), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 75), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 75), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 65), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 65), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 65), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 65), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 75), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 75), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 75), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 75), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 58), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 65), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 65), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(555), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1301), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 65), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 75), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 68), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 57), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1059), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1161), - [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1161), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(868), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(621), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(423), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1026), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1054), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1243), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1273), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(937), - [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1287), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(508), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 69), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 55), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 67), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 55), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 67), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3586] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 44), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 44), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2518] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(865), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1015), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1016), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1313), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 76), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 66), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1487), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1296), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 66), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 76), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 76), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 66), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 67), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 67), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 48), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 48), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 77), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 77), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 48), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 48), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 43), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 43), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 48), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 48), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 67), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 67), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 48), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 48), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 77), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 77), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(552), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1455), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 48), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 48), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 67), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 67), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 59), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 48), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 48), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 77), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 77), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 48), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 48), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 70), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 77), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 58), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1159), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1159), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 71), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1293), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 51), SHIFT_REPEAT(1034), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 51), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 51), SHIFT_REPEAT(1027), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 51), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 51), SHIFT_REPEAT(1057), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 51), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(862), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(422), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(553), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(920), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1239), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1246), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(624), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 27), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 56), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 69), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 56), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3585] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 69), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index b2bceab..d61e955 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -9,6 +9,10 @@ struct s2 { float y : 5; }; +struct s3 { + int x : 1, y : 2; +}; + --- (translation_unit @@ -23,7 +27,19 @@ struct s2 { (field_declaration type: (primitive_type) declarator: (field_identifier) - (bitfield_clause (number_literal)))))) + (bitfield_clause + (number_literal))))) + (struct_specifier + name: (type_identifier) + body: (field_declaration_list + (field_declaration + type: (primitive_type) + declarator: (field_identifier) + (bitfield_clause + (number_literal)) + declarator: (field_identifier) + (bitfield_clause + (number_literal)))))) ============================================ Union declarations @@ -67,6 +83,10 @@ enum e3 { val1, }; +enum e4: int { + val1, +}; + --- (translation_unit @@ -81,7 +101,14 @@ enum e3 { (enum_specifier name: (type_identifier) body: (enumerator_list - (enumerator name: (identifier))))) + (enumerator + name: (identifier)))) + (enum_specifier + name: (type_identifier) + underlying_type: (primitive_type) + body: (enumerator_list + (enumerator + name: (identifier))))) ====================================================== Struct declarations containing preprocessor directives